<!--
	function jsSwapImage(id, img) {
		var d=document.getElementById(id);
		if (d!=null) {
			document.links.item(id).childNodes[0].src="../../images/"+img;
			}
		}
	function jsRestoreImage(id, img) {
		var d=document.getElementById(id);
		if (d!=null) {
			document.links.item(id).childNodes[0].src="../../images/"+img;
			}
		}
		
function openPopWin(winURL, winWidth, winHeight, winFeatures, winLeft, winTop){
  var d_winLeft = 20  // default, pixels from screen left to window left
  var d_winTop = 20   // default, pixels from screen top to window top
  winName = "popWin" + winCount++ //unique name for each pop-up window
  closePopWin()           // close any previously opened pop-up window
  if (openPopWin.arguments.length >= 4)  // any additional features? 
    winFeatures = "," + winFeatures
  else 
    winFeatures = "" 
  if (openPopWin.arguments.length == 6)  // location specified
    winFeatures += getLocation(winWidth, winHeight, winLeft, winTop)
  else
    winFeatures += getLocation(winWidth, winHeight, d_winLeft, d_winTop)
  popWin = window.open(winURL, winName, "width=" + winWidth 
           + ",height=" + winHeight + winFeatures)
  }

  	function ConfirmHowHear() {
		var thisReposnse=window.confirm("Please help us by completing a quick survey to tell us how you found out about us. Click OK to complete the survey, or Cancel to skip the survey.");
		if(thisResponse) {
			window.navigate("HowHearQuestions.aspx");
			}
		}

		
//-->
