function setBGCOLOR(layName,color){if(document.getElementById)
document.getElementById(layName).style.backgroundColor=color;else if(document.all)
document.all(layName).style.backgroundColor=color;else if(document.layers){if(color=='transparent')color=null
document.layers[layName].bgColor=color;}}
