// popup.js

function openWin(theURL) {
winName = 'popup';
features= 'width=650,height=550,screenX=0,screenY=0,status=no,menubar=no,toolbar=no,scrollbars=yes,resizable=no';
Fenster = window.open(theURL,winName,features);
Fenster.focus(theURL,winName,features);
}
