function OpenWin(winURL) {
  newWin = window.open(winURL,'win','toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,width=800,height=600');
  newWin.focus();
}  
function OpenPlainWin(winURL, w, h) {
  newWin = window.open(winURL,'win','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width='+w+',height='+h);
  newWin.focus();
}

function OpenNewWin(winURL) {
  newWin = window.open(winURL,'win','');
  newWin.focus();
}

