<!--//script for sizing image popup windows
var popupopen=false
	function endIt() {
        if (popimage) {
           if (popupWin.closed) { 
              popimage=false
           }
           else {
              popupWin.close()
           }
        }
     }
function popimage(imagesrc,winwidth,winheight,wintitle,caption){
var look='width='+winwidth+',height='+winheight+','
popwin=window.open("","",look)
popwin.document.open()
popwin.document.write('<title>'+wintitle+'</title><body topmargin="0" leftmargin="0" bottommargin="0" marginheight="0" marginwidth="0"><img src="'+imagesrc+'" alt="'+caption+'"></body>')
popwin.document.close()
}
-->