// Anfang Popup onload oder auch per Aufruf
function popup(url, width, height, name)
{
options=
"toolbar=no"+
"location=no,"+
"directories=no,"+
"status=no,"+
"menubar=no,"+
"scrollbars=yes,"+
"resizable=no,"+
"personalbar=no,"+
"width="+width+
",height="+ height;
popup1=window.open(url, name, options)
}
// Ende Popup onload oder auch per Aufruf
