function layer_schliessen(layerid) {

document.getElementById(layerid).style.visibility = "hidden";

}

function layer_oeffnen(layerid) {

document.getElementById(layerid).style.visibility = "visible";

}

function layer_ausdrucken(layerid1,layerid2) {

if(layerid1.length > 0) layerinhalt1 = document.getElementById(layerid1).innerHTML;
if(layerid2.length > 0) layerinhalt2 = document.getElementById(layerid2).innerHTML;

printwindow = window.open('printlayer.php','printwindow','directories=0,location=0,menubar=0,resizable=1,scrollbars=1,status=0,toolbar=0,width=600,height=500,left=100,top=100');

//Html erstellen für Druckseite
printwindow.document.writeln("<html>");
printwindow.document.writeln("<head>");

printwindow.document.writeln("<title>Trion Visual Concepts GmbH, München</title>");
printwindow.document.writeln("<link rel='stylesheet' href='../print.css' type='text/css'/>");

printwindow.document.writeln("</head>");
printwindow.document.writeln("<body>");

printwindow.document.writeln("<div id='blaue_leiste_oben'></div>");
printwindow.document.writeln("<div id='logo'></div>");


printwindow.document.writeln("<div id='microsite_bild'>");
if(layerinhalt1.length > 0) printwindow.document.writeln(layerinhalt1);
printwindow.document.writeln("</div>");

printwindow.document.writeln("<div id='content'>");
if(layerinhalt2.length > 0) printwindow.document.writeln(layerinhalt2);
printwindow.document.writeln("</div>");


printwindow.document.writeln("</body>");
printwindow.document.writeln("</html>");

//Ausdrucken und anschließend schließen
printwindow.print();
printwindow.document.close();

}
