// JavaScript Document
<!--
function ShowPopup(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}


function ShowPopup(page,name,options)
{
Window = window.open(page,name,options);
}
// -->

