
 // Copyright 1998, 1999 by Ray Stott - ver 1.0
  // Script is available at http://www.crays.com/jsc         

 var popP = null    
 var winCount = 0
 var winName = "popP"

 function openPopP(winURL, winWidth, winHeight, winFeatures){
   winName = "popP" + winCount++ 
   closePopP()          
   if (openPopP.arguments.length == 4)
     winFeatures = "," + winFeatures
   else 
     winFeatures = "" 
   popP = window.open(winURL, winName, "width=" + winWidth 
            + ",height=" + winHeight + winFeatures)
   }

 function closePopP(){    
   if (navigator.appName != "Microsoft Internet Explorer" 
       || parseInt(navigator.appVersion) >=4) 
     if(popP != null) if(!popP.closed) popP.close() 
   }
   
   this.name = 'front';
