function opwin(url){
//alert("fr");
	var breite1=screen.width-12;
	var hoehe1=screen.height-56;
var thiswin=window.open(url,'newwin',"top=0, left=0,width="+breite1+",height="+hoehe1+",scrollbars=1,toolbars=no, menubar=0,resizeable=0");
thiswin.focus();
}

function openWindowPdf(url){
	var breite=screen.width-12;
	var hoehe=screen.height-56;
	var pdfWin=window.open('ie/dt/pdf/pdffrs.htm','pdfWinName',"top=0, left=0,width="+breite+",height="+hoehe+",scrollbars=0,toolbars=no, menubar=0,resizeable=0");
alert("Bitte 'O.K.' klicken, damit der Link korrekt ausgeführt wird! Danke!");
pdfWin.parent.pdfmain.document.location.href=url;
//alert("this is after the url-transmission");
//alert("this is before focus");
pdfWin.focus();
}

function opmidwin(url,breite1,hoehe1){
	var breite2=breite1+0;
	var hoehe2=hoehe1+0;
	var leftpos=(screen.width/2)-(breite2/2);
	var toppos=(screen.height/2)-(hoehe2/2);
var midwin=window.open(url,'newwin',"top="+toppos+", left="+leftpos+",width="+breite2+",height="+hoehe2+",scrollbars=no,toolbars=no, menubar=0,resizeable=0");
midwin.focus();
}


/*

*/