var browser="";
if(navigator.userAgent.indexOf("Opera") >= 0) browser="Opera";
else if(navigator.userAgent.indexOf("obot") >= 0) browser="Robot";
else if(navigator.appName.indexOf("icrosoft") >= 0) browser="Microsoft";
else if(navigator.appName.indexOf("etscape") >= 0) browser="Netscape";
else browser="unknown";

function Go(elmID)
{
	if(elmID.toUpperCase()=="JAYANT")
	{		
		elmID="DIV";
	}
	else
		return;

	if(browser=="Microsoft" || browser=="Opera")	//If the browser is MSIE or Opera
	{
		if(document.all.tags(elmID)[0].id != "div0")
			eval("document.all.tags('"+elmID+"')[0].style.display='none'");
	}
	else if(browser=="Netscape")					//If the browser is Netscape Navigator
	{
		if(document.layers)
		{
			if(document.all.tags(elmID)[0].id != "div0")
				eval("document.layers.tags('"+elmID+"')[0].style.display='none'");
		}
		else if(document.getElementById)
		{			
			
			if(document.all.tags(elmID)[0].id != "div0")
				eval("document.body.getElementsByTagName('"+elmID+"')[0].style.display='none'");
		}
	}
}

/* Outdated Script (originally used for the IFRAME) */
/*
function Go1(elmID)
{
	if(elmID.toUpperCase()=="JAYANT")
	{		
		elmID="IFRAME";
	}
	if(browser=="Microsoft")
	{
		for (i = 0; i < document.all.tags(elmID).length; i++)
		{
			obj = document.all.tags(elmID)[i];
			if (! obj || ! obj.offsetParent)
				continue;

			// Move the body to top 0 position 
			obj.style.visibility = "hidden";			
			obj.height=0;		
			obj.width=0;
			
		}
	}
	else if(browser=="Opera")
	{
		if(document.all)
		{
			for (i = 0; i < document.all.tags(elmID).length; i++)
			{
				obj = document.all.tags(elmID)[i];						
				obj.height=0;		
				obj.width=0;			
			}
		}
	}
	else if(browser=="Netscape")
	{
		if(document.layers)
		{
			for (i = 0; i < document.layers.tags(elmID).length; i++)
			{
				obj = document.layers.tags(elmID)[i];						
				obj.height=0;		
				obj.width=0;			
			}
		}
		else if(document.getElementById)
		{			
			for (i = 0; i < document.body.getElementsByTagName(elmID).length; i++)
			{
				obj = document.body.getElementsByTagName(elmID)[i];
				obj.style.visibility="hidden";				
				obj.height=0;		
				obj.width=0;			
			}
		}
	}
}
//*/