// JavaScript Document

function openWindow(theURL,winName,width,height) {
  window.open(theURL,winName,'status=yes,menubar=yes,scrollbars=yes,resizable=yes,width='+width+',height='+height);
}
