var win=null;
function openWindow(){
	if(win==null) {
		win=window.open("http://nd.ace2three.com/NoDownload/latest/Lobby.html","Ace2Three","width=890,height=632");
    } else {
		if(win.closed==true){
			win=window.open("http://nd.ace2three.com/NoDownload/latest/Lobby.html","Ace2Three","width=890,height=632");
        }
       win.blur();
       win.focus();
	}
}
var menuYloc = null;
var name = "#floatMenu";
$(document).ready(function() {
	menuYloc = parseInt($(name).css("top").substring(0,$(name).css("top").indexOf("px")))
	$(window).scroll(function () {
		offset = menuYloc+$(document).scrollTop()+"px";
		$(name).animate({top:offset},{duration:500,queue:false});
	});
});

