// JavaScript Document
function openlayer(id) {
 document.getElementById(id).style.display = 'block';
}

function closelayer(id) {
 document.getElementById(id).style.display = 'none';
}