// state menu
function gotoLink(form) {
   var OptionIndex=form.ListBoxURL.selectedIndex;
   parent.location = form.ListBoxURL.options[OptionIndex].value;
   }
   
   var preloadFlag = false;
		function preloadImages() 
	{
		var over = new Image();
		over.src = "../images/pill2.gif";
		var under = new Image();
		under.src = "../images/pill.gif";
		preloadFlag = true;
	}
	
function popup(url, name, width, height)
	{
	settings=("toolbar=no,location=yes,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width="+width+",height="+height+"");
	assoc=window.open("http://"+url,name,settings);
	}
