// JavaScript Document
function printpreview() {
	newWindow = window.open('../druckvorschau.html','newwin','scrollbars=yes,resizable=yes,width=500,height=600');
	newWindow.document.open();
	newWindow.document.write('<html><title>Druckvorschau</title><body><link href=\"../css/allgemein.css\" rel=\"stylesheet\" type=\"text/css\"><style>#printbox, #backlink {display:none;}a{color:black; text-decoration:none;}h2{margin:0px;padding:0px;font-size:14px;}body{padding:10px;}</style><div align="right"><a href="javascript:window.print();" title="Drucken"><img src="../m/druck.gif" width="16" height="13" border="0" alt="Drucken"></a><p>&nbsp;</p></div>'); 
	newWindow.document.write(document.getElementById('hauptinhalt').innerHTML); 
	newWindow.document.write('</body></html>');
	newWindow.document.close();
	newWindow.focus();
}

// Schriftgröße, NICHT MEHR VERWENDET!
/*
HTTP_GET_VARS=new Array();
strGET=document.location.search.substr(1,document.location.search.length);
if(strGET!='')
    {
    gArr=strGET.split('&');
    for(i=0;i<gArr.length;++i)
        {
        v='';vArr=gArr[i].split('=');
        if(vArr.length>1){v=vArr[1];}
        HTTP_GET_VARS[unescape(vArr[0])]=unescape(v);
        }
    }

function GET(v)
{
if(!HTTP_GET_VARS[v]){return 'undefined';}
return HTTP_GET_VARS[v];
}


if(GET('S')=='normal'){
this.document.write("<link href=\"/fileadmin/templates/css/barriere_normal.css\" rel=\"stylesheet\" type=\"text/css\" media=\"screen\">");
}
if(GET('S')=='mittel'){
	this.document.write("<link href=\"/fileadmin/templates/css/barriere_mittel.css\" rel=\"stylesheet\" type=\"text/css\" media=\"screen\">");
}
if(GET('S')=='gross'){
	this.document.write("<link href=\"/fileadmin/templates/css/barriere_gross.css\" rel=\"stylesheet\" type=\"text/css\" media=\"screen\">");
}
*/
