// JavaScript Document
function PopupWindow(theURL,name,width,height) { //v2.0
  window.open(theURL,name,'status=yes,scrollbars=no,resizable=yes,width='+width+',height='+height);
}
