
function popup(datei)
{
window.open(datei,"fenster","directories=0,location=0,menubar=0,resizable=0,scrollbars=1,status=0,toolbar=0,width=650,height=450,left=200,top=300");
}
function popup_hinweis(datei)
{
window.open(datei,"fenster","directories=0,location=0,menubar=0,resizable=0,scrollbars=1,status=0,toolbar=0,width=650,height=200,left=200,top=300");
}

function popup_img_portfolio_gross(id) {

window.open("popup_img_portfolio.php?id=" + id,"grosses_bild","directories=0,location=0,menubar=0,resizable=1,scrollbars=0,status=0,toolbar=0,width=500,height=300,left=100,top=200");

}
function popup_img_gross(img_url) {

window.open("popup_img.php?img_url=" + img_url,"grosses_bild","directories=0,location=0,menubar=0,resizable=1,scrollbars=0,status=0,toolbar=0,width=500,height=300,left=100,top=200");

}

function seite_ausdrucken(layerid) {

if(layerid.length > 0) layerinhalt = document.getElementById(layerid).innerHTML;

printwindow = window.open('printlayer.php','printwindow','directories=0,location=0,menubar=0,resizable=0,scrollbars=1,status=0,toolbar=0,width=650,height=500,left=100,top=100');

urlzudieserseite = location.href;

//Html erstellen für Druckseite
printwindow.document.writeln("<html>");
printwindow.document.writeln("<head>");

printwindow.document.writeln("<title>RWB-AG - Ihr Spezialist für Private Equity Fonds</title>");
printwindow.document.writeln("<link rel='stylesheet' href='../master.css' type='text/css'/>");

printwindow.document.writeln("<STYLE TYPE = 'text/css'> .zum_seitenanfang {display: none;} .zurueck {display: none;} .zurueck_ohne_linie {display: none;} #box_xx_drucken { display: none;} #box_portf_kuchen1m, #box_portf_kuchen1e, #box_portf_kuchen1l, #box_portf_kuchen1m, #box_portf_kuchen2e, #box_portf_kuchen2l, #box_portf_kuchen2m, #box_portf_kuchen3e, #box_portf_kuchen3l, #box_portf_kuchen3m { margin-top: -32px; left: 480px; }  </STYLE>");

printwindow.document.writeln("</head>");
printwindow.document.writeln("<body style='margin: 30px 25px 5px 50px;'>");

printwindow.document.writeln("<div style='width: 550px;'>");

	printwindow.document.writeln("<div id='box_popup_drucken'>");
		printwindow.document.writeln("<a href='JavaScript: this.print();' title='Diese Seite ausdrucken'><img src='../images/xxgprint.gif' style='margin-bottom: -1px;' alt='' width='14' height='12' border='0'><img src='../images/rwb.gif' alt='' width='3' height='1' border='0'>drucken</a>");
	printwindow.document.writeln("</div>")

if(layerinhalt.length > 0) printwindow.document.writeln(layerinhalt);

printwindow.document.writeln("</div>");

printwindow.document.writeln("</body>");
printwindow.document.writeln("</html>");

//Ausdrucken und anschließend schließen
printwindow.print();
printwindow.document.close();

}


function MenueAuf(Men)
      {
        if(document.getElementById)
        {
          document.getElementById(Men).style.visibility="visible";
        }
      
        else if(document.all && !document.getElementById)
        {
          document.all[Men].style.visibility="visible";
        }
      }
      
      function MenueZu(Men)
      {
        if(document.getElementById)
        {
          document.getElementById(Men).style.visibility="hidden";
        }
      
        else if(document.all && !document.getElementById)
        {
          document.all[Men].style.visibility="hidden";
        }
      }
