// JavaScript Document
<!--
function winOpen(url, breite, hoehe) {
// Errechnet Koordinaten, um das Popup zentriert zu platzieren
links = 100;
oben = 100;
window.open(url,"popup","height="+hoehe+",width="+breite+",status = no,toolbar = no,menubar = no,location = no,resizable = yes,titlebar = no,scrollbars = no,fullscreen = no,top ="+oben+",left ="+links);
}
//-->