<!--
//	Written & created by Shivaji Basu
//	Copyright www.shivbasu.com
//	Use this script at your own risk
//	For further info, contact info@shivbasu.com
//	To use his script, you MUST leave this disclaimer & credit as it is

//	Sniffer Explanation
//	document.layer for NS4
//	document.getElementById for IE5 & NS6
//	document.all && !(document.getElementById) for IE4

function changein(id) {
        if (document.layers) document.layers[id].visibility = "show"
        else if (document.getElementById) document.getElementById(id).style.visibility = "visible"
        else if (document.all && !(document.getElementById)) document.all(id).style.visibility = "visible"
}

function changeout(id) {
        if (document.layers) document.layers[id].visibility = "hide"
        else if (document.getElementById) document.getElementById(id).style.visibility = "hidden"
        else if (document.all && !(document.getElementById)) document.all(id).style.visibility = "hidden"
}

//-->