<!-- Pop a window -->
var popupWindow;
function popup(url,scrollbars,width,height){
    popupWindow = open(url, 'pxPopupWindow', 'toolbar=0,location=0,directories=0,status=0,menubars=0,resizable=0,scrollbars='+scrollbars+',width='+width+',height='+height+',top=20,left=20');
    if (popupWindow != null) {
        popupWindow.focus();
    }
}

function popWin(url, winName, popWidth, popHeight, popTop, popLeft, popScroll){
	var top = (popTop == "undefined" || popTop < 0) ? 20 : popTop;
	var left = (popLeft == "undefined" || popLeft < 0) ? 20 : popLeft;
	var options = 'width='+popWidth+',height='+popHeight+',scrollbars='+popScroll+',top='+top+',left='+left+',location=no,toolbar=0,menubar=0,resizable=0,directories=0';
	var myWin = window.open(url, winName, options);
	myWin.focus();
}
