

function printLayer(lname) {
var txt = document.getElementById(lname).innerHTML;
nw = window.open();
nw.document.write(txt);
nw.document.close();
nw.print();
}
