function checkBrowser(){

	var regAppVersion = /\d+.\d+/;
	var version = regAppVersion.exec(navigator.appVersion)
	//alert(navigator.appName + " " + version+ " : " + navigator.appVersion);

	if((navigator.appName == 'Netscape') && (version < 5)){
		
		return true;
	}else
		return false;
}



function ShowHideTab(id, bOn, sp){
	
	
	
	if(checkBrowser())
		return;
	else{
		
		var oTab = document.getElementById("st"+id);
		var oImage   = document.getElementById("im"+id);
	}
	
	if (!oTab || !oImage) return;
	
	

		bOn = (oTab.style.display.toLowerCase() == "none");


	if (bOn == false)
	{
		oTab.style.display = "none";
		oImage.src = "http://"+location.hostname+sp+"more.gif";
		oImage.alt = "Show";
		
		
	}
	else
	{
		oTab.style.display = "";
		oImage.src = "http://"+location.hostname+sp+"close.gif";
		oImage.alt = "Hide";
	}
	
}
