<!-- 
  function details(pic,desc) {
    wintitle = "Corrosion Technologies, Inc.";
    popguts = "<HTML><HEAD><TITLE>"+wintitle+" - "+desc+"</TITLE></HEAD>";
    popguts += "<BODY BGCOLOR='#FFFFFF' TEXT='#000000' LINK='#000000' onLoad=setTimeout('self.close()',30000)>";
    popguts += "<DIV ALIGN=CENTER>";
    popguts += '<IMG SRC="'+pic+'" ALT="'+desc+'" BORDER="1"><BR>';
    popguts += "<BR><B><A HREF='javascript: self.close()'><FONT FACE=\"Arial\" STYLE=\"font-size: 10pt; color: #006600;\">Close Window</FONT></A></B></DIV></BODY></HTML>";
    
    newWin = window.open('','popwin','width=500,height=400,menubar=0,status=0,toolbar=0,scrollbars=0,resizeable=0,screenX=0,screenY=0,left=0,top=0');
    newWin.document.open();
    newWin.document.write(popguts);
    newWin.document.close();
    newWin.focus();
  }
//-->

