function MM_openBrWindow111(mypage, myname, w, h) 
{
		var winl = (screen.width - w) / 2;
		var wint = (screen.height - h - 50) / 2;
		winprops = "height="+h+",width="+w+",top="+wint+",left="+winl+",toolbar=no,scrollbars=no,menubar=no,status=no,directories=no,resizable=yes,location=no,copyhistory=no";
		win = window.open(mypage, myname, winprops);
		if(win)
		{	
			if (parseInt(navigator.appVersion) >= 4) 
			{
				win.window.focus();
			}
		}
}
