var win= null;
function OpenNewWindow(mypage,w,h,myname,features){
	var winl = (screen.width-w)/2;
	var wint = (screen.height-h)/2;
	settings='height='+h+',width='+w+',top='+wint+',left='+winl+','+features+''
	win=window.open(mypage,myname,settings)
	if(parseInt(navigator.appVersion) >= 4){
		win.window.focus();
	}

	// 	accepted windows features:
	//	'scrollbars=yes,toolbar=yes,location=no,status=no,menubar=no,resizable=no,dependent=no'
	//	<a href="javascript:OpenNewWindow('mypage','300','200','myname','scrollbars=yes,toolbar=no,location=no,status=no,menubar=no,resizable=no,dependent=no')">Popup code</a>
	//
	// 	HK510 Popup v.1
}
