function openWin(yoko,tate,file,targ) {
   Val = "location=no,status=yes,toolbar=no,menubar=no,scrollbars=yes,resizable=yes,width=" + yoko + ",height=" + tate;
   win = window.open(file,targ,Val);
   win.focus();
}
function openWinNormal(yoko,tate,file,targ) {
   Val = "location=yes,status=yes,toolbar=yes,menubar=yes,scrollbars=yes,resizable=yes,width=" + yoko + ",height=" + tate;
   win = window.open(file,targ,Val);
   win.focus();
}

function openFullWin(file,targ) {
   var h = screen.availHeight;
   var w = screen.availWidth;
   Val = "width="+w+",height="+h+",directories=no,location=no,menubar=no,scrollbars=no,status=no,toolbar=no,resizable=yes";
   win = window.open(file,targ,Val);
   win.moveTo( 0, 0 );
   win.focus();
}

function openFullWinNormal(file,targ) {
   var h = screen.availHeight;
   var w = screen.availWidth;
   Val = "width="+w+",height="+h+",directories=yes,location=yes,menubar=yes,scrollbars=yes,status=yes,toolbar=yes,resizable=yes";
   win = window.open(file,targ,Val);
   win.moveTo( 0, 0 );
   win.focus();
}
