

function openWindow(wLocation,wNo,wWi,wHe)
{
  var wName;
  wName = "win" + wNo;
  
scriptwin = window.open(wLocation,wName,'height=500,width=965,top=0,left=0,location=no,menubar=no,personalbar=no,resizable=no,scrollbars=auto,status=no,titlebar=no,toolbar=no');
  
var uno = screen.width
var due = screen.height
scriptwin.resizeTo(uno,due)
}





