function surveyReminder() {
        var allcookies = document.cookie;
        var visited = allcookies.indexOf("IPODRsurvey2006=");
        if (visited == -1) {
           if (confirm("We are currently conducting an IPODR user survey.\nYou can either participate now by clicking Ok, or\nyou can participate later by selecting the Take IPODR Survey link\nin the navigation bar to your left.\nThank you!")) {
              var newloc = '/ipodr/survey.html';
              var newwin = window.open(newloc,'surveywindow');
           }
        }
}
