<!--var validChar = "1234567890 -+()";function correctPNG() {  // correctly handle PNG transparency in Win IE 5.5 or higher.   for(var i=0; i<document.images.length; i++)      {	  var img = document.images[i]	  var imgName = img.src.toUpperCase()	  if (imgName.substring(imgName.length-3, imgName.length) == "PNG")	     {		 var imgID = (img.id) ? "id='" + img.id + "' " : ""		 var imgClass = (img.className) ? "class='" + img.className + "' " : ""		 var imgTitle = (img.title) ? "title='" + img.title + "' " : "title='" + img.alt + "' "		 var imgStyle = "display:inline-block;" + img.style.cssText 		 if (img.align == "left") imgStyle = "float:left;" + imgStyle		 if (img.align == "right") imgStyle = "float:right;" + imgStyle		 if (img.parentElement.href) imgStyle = "cursor:hand;" + imgStyle				 var strNewHTML = "<span " + imgID + imgClass + imgTitle		 + " style=\"" + "width:" + img.width + "px; height:" + img.height + "px;" + imgStyle + ";"	     + "filter:progid:DXImageTransform.Microsoft.AlphaImageLoader"		 + "(src=\'" + img.src + "\', sizingMethod='scale');\"></span>" 		 img.outerHTML = strNewHTML		 i = i-1	     }      }   }if (navigator.appName == 'Microsoft Internet Explorer' &&  (navigator.appVersion.indexOf("MSIE 5.5")!=-1 || navigator.appVersion.indexOf("MSIE 5")!=-1 || navigator.appVersion.indexOf("MSIE 6")!=-1)) { window.attachEvent("onload", correctPNG); }function openGraph(m, s, j) {  openBrWindow("graph.asp?mode=" + m + "&j=" + j + "&s=" + s, "graph", "toolbar=no,menubar=no,scrollbars=no,resizable=false,width=550,height=400");}function openRound(r, g) {  openBrWindow("roundView.asp?i=" + r + "&gID=" + g, "round", "toolbar=no,menubar=yes,scrollbars=auto,resizable=true,width=650,height=550");}function openCourseReview(cID) {  openBrWindow("course_review.asp?cID=" + cID, "coursereview", "toolbar=no,menubar=yes,scrollbars=auto,resizable=true,width=625,height=550");}function openScoreCard(ctID) {  openBrWindow("course_card.asp?cID=" + ctID, "coursescorecard", "toolbar=no,menubar=yes,scrollbars=auto,resizable=true,width=650,height=550");}function openPhotoSubmit(cID) {  openBrWindow("course_photo_upload.asp?cID=" + cID, "coursephoto", "toolbar=no,menubar=yes,scrollbars=auto,resizable=true,width=650,height=550");}function openPhotoView(pID, cID) {  openBrWindow("course_photo_view.asp?i=" + pID + "&j=" + cID, "coursephotoView", "toolbar=no,menubar=yes,scrollbars=auto,resizable=true,width=650,height=550");}function openBrWindow(theURL,winName,features) {  window.open(theURL,winName,features);}function checkBlank() {  for (var i = 0; i < arguments.length; i += 2) {    if (!arguments[i].value) {      alert("Please enter " + arguments[i+1] + ".");      arguments[i].focus();      return false;    }  }  return true;}function isValid(string, allowed) {  for (var ii=0; ii< string.length; ii++) {    if (allowed.indexOf(string.charAt(ii)) == -1)      return false;    }  return true;}function checkBlankNumeric() {  var okChars = "0123456789";  var isNumber=true;  var cChar;  for (var i = 0; i < arguments.length; i += 2) {    if (!arguments[i].value) {      alert("Please enter " + arguments[i+1] + ".");      arguments[i].focus();      return false;           } else {      for (var j = 0; j < arguments[i].value.length; j++) {        cChar = arguments[i].value.charAt(j);        if (okChars.indexOf(cChar) == -1) {          alert("Please enter a valid numeric value for " + arguments[i+1] + ".");          arguments[i].focus();          return false;        }      }    }  }  return true;}function checkLogin(f) {  var checkResult = true;  checkResult = checkBlank(f.email, 'your email address', f.userPassword, 'your password');  if (checkResult == false) { return false; }  return true;  }function viewCourseStats() {  selected = document.csForm.csID.selectedIndex;  if (selected != 0) { document.location = 'course.asp?cID=' + document.csForm.csID[selected].value; }}function viewGroupStats() {  selected = document.gForm.groupID.selectedIndex;  if (selected != 0) { document.location = 'group_stats.asp?gID=' + document.gForm.groupID[selected].value; }}function searchCourses() {  document.hsForm.submit();}//-->