function popWindow(winURL,winWidth,winHeight) {
	newWin = window.open(winURL,'PopWindow','width='+winWidth+',height='+winHeight+',scrollbars=yes,resize=yes');
	newWin.focus();
}