// JavaScript Document
function openWindow(theURL,winname,features) {
window.open(theURL,winname,features);
}

function newWinOpt(h,w,scroll,status,location,tool,resize,menu,page) {
  var newWin = null;
  newWin = window.open(page,'popupWindow','height='+h+',width='+w+',screenY=0,scrollbars='+scroll+',status='+status+',location='+location+',toolbar='+tool+',resizable='+resize+',menubar='+menu);
  newWin.focus();
  void(0);
}
