//  Written & created by Shivaji Basu
//  Copyright & Disclaimer 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

function cOn(tr){
tr.style.backgroundColor="#E2BD00";
}

function cOut(tr){
tr.style.backgroundColor="#000000";
}

function showIt(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 hideIt(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"
}

