// JavaScript Document
var win = null;
function PopupWin (pUrl,pName,w,h){
	var winWidth = (screen.width-w)/2;
	var winHeight = (screen.height-h)/2;
	var Screen = 'height='+h+',';
	Screen += 'width='+w+',';
	Screen += 'top='+winHeight+',';
	Screen += 'left='+winWidth+',';
	win=window.open(pUrl,pName,Screen);
	if(parseInt(navigator.appVersion)>=4){win.window.focus();}
}

