
function openbanner(url){

f1 = open(url,'PopUp','width=220,height=154,location=no,toolbar=no,scrollbars=no,resizable=no,left=800,top=10');

f1.focus();}




function drucken(url){
f1 = open(url,'drucken','width=570,height=540,menubar=yes,location=no,toolbar=yes,scrollbars=yes,resizable=yes,screenX=0,screenY=0');
f1.focus();
}


function openpage(url){

f1 = open(url,'PopUp','width=560,height=540,location=no,toolbar=no,scrollbars=yes,resizable=yes,screenX=0,screenY=0');

f1.focus();}



function openimage(bildpfad){

  myImage = new Image();

  myImage.src = bildpfad;

  var hoehe = myImage.height;

  var breite = myImage.width;

  var uebergabe = "width="+(breite+25)+",height="+(hoehe+25)+",status=no,toolbar=no,menubar=no,resizable=yes,screenX=0,screenY=0"

  f2 = open(bildpfad, "Window",'width=250,height=200,status=no,toolbar=no,menubar=no,resizable=yes,screenX=0,screenY=0');

  f2.focus();

}