function getObj(item) {
	if (document.all) return(document.all[item]);
	if (document.getElementById) return(document.getElementById(item));
	return(false);
}

function hideObject(obj)
{
	getObj(obj).style.visibility="hidden";
}

function showOwbject(obj)
{
	getObj(obj).style.visibility="visible";
}
