window_onload()
function window_onload()
{
//window.status = '<%=Request.ServerVariables("Server_Name")%>';
}

go()
 function go()
 {
 if (navigator.appName=="Netscape") decideNetscape();
 if (navigator.appName.substring(0,9)=="Microsoft") decideIE();
 }

 function decideNetscape()
 {
 if (parseInt(navigator.appVersion)<=4)

	document.write("<link rel=stylesheet href=/css/mco_is_312_nav.css>");
 else{
		document.write("<link rel=stylesheet href=/css/mco_is_312_nav.css>")

        }
 }

 function decideIE(){
 if (parseInt(navigator.appVersion)<=4)
	document.write("<link rel=stylesheet href=/css/mco_is_312_ie.css>")
// window.location="";

 else
      {
		document.write("<link rel=stylesheet href=/css/mco_is_312_ie.css>")
	 
      }
 }
 
 function openInfoWindow (infoPage,szw,szh,szr,szs)
{
        // openInfoWindow opens the passed html page parameter in a remote window. 
        // You can create more remote windows by naming the new window object a 
        // different name. 

//var newwind = window.showHelp(infoPage);      
        var newWind=window.open(infoPage,'info','width='+szw+',height='+szh+',resizable='+szr+',scrollbars='+szs+',top=0,left=0');

  
        if (newWind.opener == null)
        {
                newWind.opener = window;
        }
        else
        {
                newWind.focus();
        }
}
 
 function openInfoWindow1 (infoPage1,szw,szh,szr,szs)
{
	window.open(infoPage1,'info1','width='+szw+',height='+szh+',resizable='+szr+',scrollbars='+szs+',top=0,left=0');

}

function showObject(object) {
    if (document.layers && document.layers[object] != null)
        document.layers[object].visibility = 'visible';
    else if (document.all)
        document.all[object].style.visibility = 'visible';
	else
		document.getElementById(object).style.visibility = 'visible';

}
function hideObject(object) {
    if (document.layers && document.layers[object] != null)
        document.layers[object].visibility = 'hidden';
    else if (document.all)
        document.all[object].style.visibility = 'hidden';
	else	
		document.getElementById(object).style.visibility = 'hidden';

}

function changeImages(strName, strSrc)
	{
	if (document.images)
 		{
		document.images[strName].src = strSrc;
		}
		return true;
	}	


