<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin
var popup = null;

function close() {
 if (popup && popup.open && !popup.closed)
   popup.close();
}

function popupPage(URL, w, h) {
  var windowprops = "location=no,scrollbars=yes,menubars=no,toolbars=no,resizable=yes" +
                   ",left=" + 160 + ",top=" + 154 + ",width=" + w + ",height=" + h;
 	close();								 
  popup = window.open(URL, "MenuPopup", windowprops);
}
//  End -->
