function winPopup(strURL, xlocation, ylocation, xsize, ysize) {
   window.open(strURL, "RemoteWindow", "menubar = no, toolbar = no, locationbar = no, personalbar = no, status = no, scrollbars = yes, resizable = yes, width = " + xsize + ", height = " + ysize + ", top = " + ylocation + ", left = " + xlocation);
}

function winPopup2(strURL, strWindow, xlocation, ylocation, xsize, ysize) {
   window.open(strURL, strWindow, "menubar = no, toolbar = no, locationbar = no, personalbar = no, status = no, scrollbars = yes, resizable = yes, width = " + xsize + ", height = " + ysize + ", top = " + ylocation + ", left = " + xlocation);
}

