


function popUp(pPage) {
var winOpts = 'menubar=no,toolbar=no,status=0,resizeable=no,scrollbars=no,width=640,height=480,top=-5,left=0';

popUpWin = window.open(pPage,'popWin',winOpts);
//remote = window.open(strPage, strWinName, 'menubar=no,toolbar=no,status=no,resizable=no,scrollbars=no,height='+intHeight +',width=' +intWidth +',top=' + ((screen.height/2)-(intHeight/2)) + ',left=' + ((screen.width/2)-(intWidth/2)));
	
}




function popUp2(pPage,w,h) {
var winOpts = 'menubar=no,toolbar=no,status=0,resizeable=no,scrollbars=no,width='+w+',height='+h+',top=-5,left=0';

popUpWin2 = window.open(pPage,'popWin',winOpts);
//remote = window.open(strPage, strWinName, 'menubar=no,toolbar=no,status=no,resizable=no,scrollbars=no,height='+intHeight +',width=' +intWidth +',top=' + ((screen.height/2)-(intHeight/2)) + ',left=' + ((screen.width/2)-(intWidth/2)));
	
}


