
// JavaScript Document

function poplink ()
{
		num = document.links.length;
		
		for (i=0; i<num; i++) 
		{
			node = document.links[i];
			if (node.href.match("entrance.html"))
			{
				node.onclick=function()
				{
      
          				if (screen.width<1024) {
          				winsize = "width=750,height=375";
          				url = "entrance2.html";
          				pos = "top=100,left=10,"; }
          				else {
          				winsize = "width=1000,height=500";
          				url = this.href;
          				scrw = screen.width;
          				scrh = screen.height;
          				
          				topdata = ( scrh - 500 ) / 2;
          				leftdata = ( scrw - 1014 ) / 2; 
          				pos = "top="+topdata+",left="+leftdata+","; }
          				
          				par = pos+winsize+",buttons=no,scrollbars=no,location=no,menubar=no,resizable=no,status=no,directories=no,toolbar=no"; 
    
          				window.open(url,'_blank',par);
           				return false;
				}
			}
			if (node.href.match("entrance_game.html"))
			{
				node.onclick=function()
				{
      
          				if (screen.width<1024) {
          				winsize = "width=750,height=375";
          				url = "entrance_game2.html";
          				pos = "top=100,left=10,"; }
          				else {
          				winsize = "width=1000,height=500";
          				url = this.href;
          				scrw = screen.width;
          				scrh = screen.height;
          				
          				topdata = ( scrh - 500 ) / 2;
          				leftdata = ( scrw - 1014 ) / 2; 
          				pos = "top="+topdata+",left="+leftdata+","; }
          				
          				par = pos+winsize+",buttons=no,scrollbars=no,location=no,menubar=no,resizable=no,status=no,directories=no,toolbar=no"; 
    
          				window.open(url,'_blank',par);
           				return false;
				}
			}			
		}
		
}


