
function popup(popupfile,winwidth,winheight,scroll)
{
open(popupfile,"PopupWindow","resizable=yes,width=" + winwidth + ",height=" + winheight + ",scrollbars=" + scroll);
}



//	 URL, Name, pos. left, pos. top, width, height
// 	 <a HREF="#" onClick="popupPage('HentBilledeStor.asp','Billede','100','100','200','250');">
function popupPage(url,name,l, t, w, h) {
var windowprops = name + ",location=no,scrollbars=yes,menubars=no,toolbars=no,status=yes,resizable=yes" + ",left=" + l + ",top=" + t + ",width=" + w + ",height=" + h;
window.open(url, "", windowprops);
}

