// JavaScript Document
function PopupWindow(theURL, name, width, height) { //v2.0
  window.open(theURL,name,'status=yes,scrollbars=no,resizable=yes,width='+width+',height='+height);
}

function PopupWindow2(theURL, name, width, height) { //v2.0
  window.open(theURL,name,'status=yes,scrollbars=yes,resizable=yes,width='+width+',height='+height);
}

/*
<a href="#" onclick="PopupWindow('/aaaaa/aaa.html','aaa',500,300)"></a>
*/
