function winPop(theURL, widthPx, heightPx) {
	newWindow = window.open(theURL, 'popWindow' , 'status=no,scrollbars=yes,width='+widthPx+',height='+heightPx+'');
	newWindow.focus();
	//return false;
}

//-->