function isIE(){	var browser=navigator.appName;	if(browser=="Microsoft Internet Explorer")	{		return true;	}	return false;}
function isNetscape(){	var browser=navigator.appName;	if(browser=="Netscape")	{		return true;	}	return false;}
function hRow(obj){	if(isIE())	{		if(obj.style.background=="#b4d3f2")		{			obj.style.color="";			obj.style.background="";			obj.style.cursor="normal";		}		else		{			obj.style.color="black";			obj.style.background="#b4d3f2";			obj.style.cursor="normal";		}	}
	if(isNetscape())	{		if(obj.style.background=="")		{			obj.style.color="black";			obj.style.background="#b4d3f2";			obj.style.cursor="normal";		}		else		{			obj.style.color="";			obj.style.background="";			obj.style.cursor="normal";		}	}}function _display_obj(obj, status){        if(obj.style.display!=status)                obj.style.display=status;} function Switch(obj){        _display_obj(obj, obj.style.display=="none"?"":"none");}
