
//fensteroeffnen

var popupWindow = new Array(50);

function popup(URL,NR,SCRLL,SIZ)
{
popupWindow[NR] = window.open(URL,NR,"width=650,height=500,top=100,left=150,locationbar=no,directories=no,titlebar=no,scrollbars="+SCRLL+",menubar=no,status=no,toolbar=no,resizable="+SIZ);
popupWindow[NR].focus();
//popupWindow[NR].moveTo(20,20);
//popupWindow[NR].resizeTo(B,H);
}

