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 LoadHotlinkFor128 ()
		{
			var arrURL =  new Array();
arrURL[0] = "body.cfm?id=68";
arrURL[1] = "http://www.our365.com/";
arrURL[2] = "body.cfm?id=485";
arrURL[3] = "body.cfm?id=299";
arrURL[4] = "body.cfm?id=300";
arrURL[5] = "body.cfm?id=329";
arrURL[6] = "body.cfm?id=543";
arrURL[7] = "http://www.plan.gs/Home.do?orgId=5690";
arrURL[8] = "body.cfm?id=423";
arrURL[9] = "http://www.caringbridge.org/";

			var arrText =  new Array();
arrText[0] = "Apply for a Job";
arrText[1] = "Mercy Babies Online Photos";
arrText[2] = "Online Gift Shop";
arrText[3] = "Send a Cheer Card";
arrText[4] = "Classes & Events";
arrText[5] = "Healthy Recipes";
arrText[6] = "Pay Your Bill Online";
arrText[7] = "Ways to Give";
arrText[8] = "Pre-Registration";
arrText[9] = "CaringBridge.org";

			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);}					
				}
			}
		}	// LoadHotlinkFor128
		
		if (window.addEventListener) window.addEventListener("load", LoadHotlinkFor128, false);
		else if (window.attachEvent) window.attachEvent("onload", LoadHotlinkFor128);

