function openPopup(ziel,breite,hoehe,option,title) {
if(typeof title=="undefined") title="Info";
if(typeof breite=="undefined") breite=530;
if(typeof hoehe=="undefined") hoehe=350;
if(typeof option=="undefined") option='toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=0,resizable=1';
option = option+",width="+breite+",height="+hoehe;
p=open(ziel,title,option);
p.focus();
}

