// JavaScript Document
function popUp(url,winWidth,winHeight){
	if(winWidth==undefined){
		winWidth=505;
		winHeight=480;
	}
	newWindow = window.open(url, 'modPage','width='+winWidth+',height='+winHeight+',resizable=yes,scrollbars=1'); newWindow.focus( );
}