function OpenURL(url,wname,width,height) {
  var NewWin;
  NewWin = window.open(url, wname, 'width='+ width + ',height='+ height +',toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,screenX=5,left=5,screenY=5,top=5');
  NewWin.focus();
}

