
var popwindow;
function Popup(bild,breite,hoehe)
{
var inhalt="top=0,left=0,width="+breite+",height="+hoehe;
popwindow = open(bild,"popwin",inhalt);
popwindow.focus();
}
