<!--
var newWind;
var lOpened=false;
function openwindow(cPicture,nWidth,nHeight,cMessage,nBorder,cTexto){ 
          var output; 
          if (lOpened){ 
          newWind.close(); 
          } 
          lOpened=true; 
          newWind = window.open("","Detalle","HEIGHT="+nHeight+",WIDTH="+nWidth+",scrollbars=yes,resizable=no,top=3,left=3"); 
          output="<HTML><head><title>"+cMessage+"</title></head><BODY bgcolor='#99CCFF'><CENTER>" 
          output+="<FONT FACE='Arial' SIZE='+1' COLOR='Black'><B>"+cMessage+"</B></FONT><BR>" 
          output+="<TABLE BORDER='1' borderColorDark='#0000ff' borderColorLight='#000000' bordercolor='#0000FF'><TR><TD bgcolor='#FFFFFF' align='center'>" 
          output+="<IMG SRC='"+cPicture+"'></TR>" 
          output+="<TR><TD valign='top'><TABLE BORDER='0' CELLSPACING='2' valign='top'><TR><TD><FONT FACE='Arial' SIZE='2' COLOR='Black'>"+cTexto+"</FONT><BR></TD></TR></TABLE></TD>"
          output+="</TD></TR></TABLE>" 
          output+='<p></p><img border="0" src="Images/bulletorange.gif" width="9" height="12" align="absmiddle">'
          output+="<FONT FACE='Arial' SIZE='2' COLOR='Black'><B>&nbsp; <a href=javascript:self.close()>Cerrar esta ventana</a></B></FONT><BR>" 
          output+="</TD></TR></TABLE></CENTER></BODY></HTML>" 
          newWind.document.write(output); 
          newWind.document.close(); 
          }
//-->