function GoToSite1()
		{
			var xxx;
			var zzz;
			zzz=document.hotlink1.SiteURL1;
			xxx=document.hotlink1.SiteURL1.selectedIndex;
			if(zzz[xxx].value.match(/^http/i))
			{
				window.open(zzz[xxx].value);		
			}
			else
			{	
			
				location.href="" + zzz[xxx].value;
			
			return true;
			}
		}	// GoToSite1
		
		function LoadHotlinkFor60 ()
		{
			var arrURL =  new Array();
arrURL[0] = "body.cfm?id=52";
arrURL[1] = "http://svhclasses.org";
arrURL[2] = "body.cfm?id=26";
arrURL[3] = "body.cfm?id=13";
arrURL[4] = "body.cfm?id=202";
arrURL[5] = "body.cfm?id=42";
arrURL[6] = "body.cfm?id=39";

			var arrText =  new Array();
arrText[0] = "Job Openings";
arrText[1] = "Classes and Events";
arrText[2] = "All Health Services A-Z";
arrText[3] = "Find a Physician";
arrText[4] = "Nurse Advisor";
arrText[5] = "Medical Records";
arrText[6] = "SCLHS Resource Center";

			var sl = document.getElementById("SiteURL1");
			if (sl)
			{
				for (var x=0; x < arrURL.length; x++) 
				{
					opt = new Option(arrText[x], arrURL[x], false);
					try {sl.add(opt,null);}
					catch(ex) {sl.add(opt);}					
				}
			}
		}	// LoadHotlinkFor60
		
		if (window.addEventListener) window.addEventListener("load", LoadHotlinkFor60, false);
		else if (window.attachEvent) window.attachEvent("onload", LoadHotlinkFor60);

