var exit = true;
var win = null;

function popup() {


          NewPopup('http://www.alpgay.com/ban/arsp.html','ExitConsole','625','320','no');

}

function NewPopup(mypage,myname,w,h,scroll) {
   if (exit) {
           LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
           TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
		         settings='height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',menubar=0,location=0,directories=0,channelmode=0,dependent=0,copyhistory=1,resizable=1,target='+myname+',fullscreen=0,status=0,toolbar=0'
           win = window.open(mypage,myname,settings)
           if(win.window.focus){win.window.focus();}
        }
} 