/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */


var win=null;
 function openWindow(){
//    var chars = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXTZ";
//	var string_length = 4;
//	var randomstring = '';
//	for (var i=0; i<string_length; i++) {
//		var rnum = Math.floor(Math.random() * chars.length);
//		randomstring += chars.substring(rnum,rnum+1);
//	}
    //alert(randomstring);
        if(win==null)
        {
       
        win=window.open("http://stgwww.ace2three.com/NoDownload/Lobby.jsp","Ace2Three","width=890,height=632");
                }
        else
        {
        if(win.closed==true){
             win=window.open("http://stgwww.ace2three.com/NoDownload/Lobby.jsp","Ace2Three","width=890,height=632");
        }
        win.blur();
       win.focus();
        }
        }


