function wOpen1(URLStr,WinName) {
	intLeft = (screen.width - 640) / 2; 
    intTop = (screen.height - 1290) / 2; 
    if(intLeft < 0) intLeft = 0; 
    if(intTop < 0) intTop = 0; 
    if(WinName == null) WinName = "oosaki"; 
   //if(!newWin.closed) newWin.close(); 
    newWin = window.open(
                    URLStr,WinName,
                    'status=0,location=0,scrollbars=' + 'yes' + 
                    ',resizable=' + 'no' + 
                    ',toolbar=0,directories=0,menubar=0,width=' + '640' +
                    ',height=' + '1290' +
                    ',left=' + intLeft + 
                    ', top=' + intTop + 
                    ',screenX=' + intLeft + 
                    ',screenY=' + intTop
                    ); 
}

function wOpen0(URLStr,WinName) {
    if(WinName == null) WinName = "recruit"; 
   //if(!newWin.closed) newWin.close(); 
    newWin = window.open(
                    URLStr,WinName,
                    'status=1,location=1,scrollbars=' + 'yes' + 
                    ',resizable=' + 'yes' + 
                    ',toolbar=1,directories=1,menubar=1'
                    ); 
    return false;
}



