var isNav, isIE;
var col1 = "";
var styleObj = "";

if (parseInt(navigator.appVersion) >= 4)
{
	if (navigator.appName == "Netscape")
	{
		isNav = true;
	}
	else
	{
		isIE = true;
		coll = "all.";
		styleObj = ".style";
	}
}


function getObject(obj)
{
	var theObj;

	if (typeof obj == "string")
	{
		theObj = eval("document." + coll + obj + styleobj);
	}
	else
	{
		theObj = obj;
	}

	return theObj;
}

function pop(ctl1)
{
	var ctlid = ctl1.id.concat("f");
	var ctl = document.all[ctlid];
//alert(ctl.id);
	if (ctl.style.display == "")
		ctl.style.display = "none";
	else 
		ctl.style.display = "";
}

/*
function pop(ctl)
{alert(ctl.style.display);
	if (ctl.style.display == "")
		ctl.style.display = "none";
	else 
		ctl.style.display = "";
}
*/

function MouseOver(ctl)
{	
	ctl.style.color= "#ff0000";
}	

function MouseOut(ctl)
{
	ctl.style.color= "";
}
