function rollOver2(whichImage,state) 
{
	if (document.images) 
	{ 
		document.images[whichImage].src = "/spons/common/images/"  + state + ".gif";
	}
}

function goThere()
{
	window.location = document.navform.navlinks.options[document.navform.navlinks.selectedIndex].value;
}

function pop_win(url, productname)
{
	window.open(url, productname, 'width=700,height=550,toolbar=no,location=no,directories=no,status=no,menubar=yes,scrollbars=yes,copyhistory=no,resizable=yes');
}

function bookMark()  
{
	var ver = navigator.appName
	var num = parseInt(navigator.appVersion)
	if ((ver == "Microsoft Internet Explorer")&&(num >= 4)) 
	{
		window.external.AddFavorite(location.href, document.title);
	}
}
function printVersion()
{
	var strURL = window.location.pathname + window.location.search;
	if (strURL.indexOf("?") >= 0)
		{strURL += "&print=true"}
	else
		{strURL += "?print=true"}
	var newWindow = window.open(strURL,"PopUpWindow","width=700,height=600,left=50,top=40,toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes");
}    
