	function mouseOverButton(obj)
	{
		obj.style.backgroundColor = "#EDF49C";
		obj.style.color = "#5f5f5f";
		obj.style.border ="1 solid #CCCCCC"; 
	}

	function mouseOutButton(obj)
	{
		obj.style.backgroundColor = "#ffffff";
		obj.style.color = "#5f5f5f";
		obj.style.border ="1 solid #CCCCCC"; 
	}
	
	function MM_openBrWindow(theURL,winName,features) { //v1.2  
	window.open(theURL,winName,features);;
	}
	
	function goUrl(url) {
	location.href=url;
	}
