// JavaScript Document
function fPopUp(pWidth,pHeight,pSrc,pWinName,pOptions){
	var vTop;
	var vLeft;
	
	vTop = (window.screen.height - pHeight) / 2;
	vLeft = (window.screen.width - pWidth) / 2;
	if (pOptions != ""){
		window.open(pSrc,pWinName,"top="+vTop+",left="+vLeft+",height="+pHeight+",width="+pWidth+","+pOptions);
	} else {
		window.open(pSrc,pWinName,"top="+vTop+",left="+vLeft+",height="+pHeight+",width="+pWidth);
	}
}