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 LoadHotlinkFor27 ()
		{
			var arrURL =  new Array();
arrURL[0] = "home_mfch.cfm?id=65";
arrURL[1] = "home_speciality_heart.cfm?id=61";
arrURL[2] = "home_specialty.cfm?id=63";
arrURL[3] = "home_specialty.cfm?id=59";
arrURL[4] = "home_specialty.cfm?id=62";
arrURL[5] = "home_specialty.cfm?id=57";
arrURL[6] = "home_specialty.cfm?id=60";
arrURL[7] = "home_specialty.cfm?id=67";
arrURL[8] = "home_specialty.cfm?id=66";
arrURL[9] = "home_specialty.cfm?id=58";

			var arrText =  new Array();
arrText[0] = "Maria Fareri Children\'s Hospital";
arrText[1] = "Westchester Heart & Vascular";
arrText[2] = "Cancer Center";
arrText[3] = "Transplant Center";
arrText[4] = "Trauma and Burn Center";
arrText[5] = "Neuroscience Center";
arrText[6] = "Behavioral Health Center";
arrText[7] = "Advanced Imaging Center";
arrText[8] = "Advanced OB/GYN Associates";
arrText[9] = "Nursing";

			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);}					
				}
			}
		}	// LoadHotlinkFor27
		
		if (window.addEventListener) window.addEventListener("load", LoadHotlinkFor27, false);
		else if (window.attachEvent) window.attachEvent("onload", LoadHotlinkFor27);

