function popup(popupfile,winheight,winwidth,scrollbars)
{
newwindow=window.open(popupfile,"PopupWindow","resizable=no,height=" + winheight + ",width=" + winwidth + ",scrollbars=yes");
if (window.focus) {newwindow.focus()}
}