<!--
function openPop(theURL, theName, theWidth, theHeight)
{
   var width=theWidth;
   var height=theHeight;
   var theName=theName;
   var winl = (screen.width - width) / 3;
   var wint = (screen.height - height) / 2;
   var theFeatures = "width=" + width + ",height=" + height +",top="+wint+",left="+winl+",scrollbars=yes";
                                
   var theWin = window.open(theURL,theName,theFeatures);
         theWin.focus();
} 
