<!--
     var popupopen=false

     function endIt()
     {
        if (popupopen)
        {
           if (popupWin.closed)
           { 
              popupopen=false
           }
           else
           {
              popupWin.close()
           }
        }
     }

     function openPopup(theURL, winWidth, winHeight, winTitle)
     {            
        endIt()
        var winProperties = 'left=15,top=10,width='+winWidth+',height='+winHeight+','
        
        popupWin=window.open("","",winProperties)        
        popupWin.document.open()        
        popupWin.document.write('<title>'+winTitle+'</title><body topmargin="0" leftmargin="0" bottommargin="0" marginheight="0" marginwidth="0"><img src="'+theURL+'" alt="'+winTitle+'"></body>')
        popupWin.document.close()        
        popupopen=true              
     }       
-->
