// JavaScript Document

function popup(url,window_width,window_height) {

 fenster=window.open(url, "Popupfenster", "width="+window_width+", height="+window_height+", resizable=false, scrollbars=yes, status=yes, menubar=no, toolbar=no");
 fenster.focus();

 return false;

}
