function showLayer(layerName) {
document.layers[layerName].visibility="show";
}
function hideLayer(layerName) {
document.layers[layerName].visibility="hide";
}