function showCell(Id) { if(document.getElementById) { document.getElementById(Id).style.visibility = "visible"; } } function hideCell(Id) { if(document.getElementById) { document.getElementById(Id).style.visibility = "hidden"; } } function changeCell(Id) { if(document.getElementById) { if(document.getElementById(Id).style.display == "none") { document.getElementById(Id).style.display = ""; } else { document.getElementById(Id).style.display = "none"; } } } function contactHover(Id) { if(document.getElementById) { document.getElementById(Id).style.backgroundColor = "#FFFFFF"; } } function contactOut(Id) { if(document.getElementById) { document.getElementById(Id).style.backgroundColor = ""; } }