function MM_openBrWindow() { //v2.0
		var strURI    = "top.html";
		var strAppVer = navigator.appVersion;
		var strAppNM  = navigator.appName;

		if(strAppVer.indexOf("Win")>=0){ //OS--Windows
			if(strAppNM.indexOf("Microsoft")>=0){ //Browser--InternetExplorer
				if (strAppNM == "Microsoft Internet Explorer" && parseInt(strAppVer)>=4){ //IEversion more 4
					fullWindow = window.open("" ,"full","fullscreen=0,width=" + (screen.availWidth) + ",height=" + (screen.availHeight) + ",toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0");
					fullWindow.resizeTo(Math.ceil(screen.availWidth),Math.ceil(screen.availHeight));
					fullWindow.moveTo  (0,0);
					fullWindow.document.open("text/html", "replace");
					fullWindow.document.write("<html>\n");
					fullWindow.document.write("<body onload=\"top.document.location.replace('"+strURI+"')\" topmargin=0 leftmargin=0 marginwidth=0 marginheight=0 scroll='no'>");

					fullWindow.document.write("</body></html>");
					fullWindow.document.close();
//					window.close();
					fullWindow.focus();
				}else{ //IEversion under 4
					fullWindow = window.open(strURI,"full","width=" + (screen.availWidth+1) + ",height=" + (screen.availHeight-21) + ",toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=1,left=0,top=0,screenX=0,screenY=0",true);
//					window.close();
				}
			}else if(strAppNM.indexOf("Netscape")>=0){ //Browser--NetscapeNavigator
				fullWindow = window.open("","full","scrollbars=0,resizable=0,width=" + (screen.availWidth-12) +",height=" + (screen.availHeight-30));
				fullWindow.moveTo(0,0);
				fullWindow.location.href = strURI;
//			    window.close();
			}else{ //Browser-- 3rdParty
				location.replace("alert.html");
//				window.close();
			}
		}else if(strAppVer.indexOf("Mac")>=0){ //OS-Machintosh
			if(strAppNM.indexOf("Microsoft")>=0){ //Browser--InternetExplorer
				fullWindow = window.open(strURI,"full","alwaysLowered=0,alwaysRaised=0,channelmode=0,dependent=1,directories=0,fullscreen=1,hotkeys=1,location=0,menubar=0,resizable=0,scrollbars=0,status=0,titlebar=0,toolbar=0,z-lock=0,screenX=0,screeny=0,left=0,top=0");
				fullWindow.resizeTo(screen.availWidth,screen.availHeight);
//				window.close();
			}else if(strAppNM.indexOf("Netscape")>=0){ //Browser--NetscapeNavigator
				fullWindow=window.open("","full","scrollbars=0,resizable=0,width=" + (screen.availWidth-12) +",height=" + (screen.availHeight-30));
				fullWindow.moveTo(0,0);
				fullWindow.location.href=strURI;
//			    window.close();
			}else{ //Browser-- 3rdParty
				location.replace("alert.html");
				window.close();
			}

		}else{
			location.replace("alert.html");
			window.close();
		}

}