// Chequeo de navegador y resolución...
function res01(){ 
var resx = screen.width;
if ((navigator.appName.indexOf('Microsoft')+1)) {} else {
alert('Por favor, navegue este sitio con IExplorer / Please, browsing this site with IExplorer')
}
if (resx >= 800) {} else { alert('Resolución insuficiente; por favor cambie a 800x600 mínimo. / Inadequate resolution; please change to 800x600 littlest.') } 
}

// Muestra de la galería...
function shot(imagen, proyecto, titulo)
{
   document.open("text/html");
   document.clear();
   document.write('<html><head><link rel="stylesheet" type="text/css" href="../../../styles.css"></head><body bgcolor="#8C735C" background="../../../back_main.gif">');
   //document.write('<html><head><link rel="stylesheet" type="text/css" href="../../styles.css"></head><body bgcolor="#8C735C" background="../../back_main.gif">');
   //document.write('<table width="540" border="0" cellpadding="5" cellspacing="5"><tr><td width="659" bgcolor="#666666"><font color="#FFFFFF"><strong>' + proyecto + '</strong></font></td>');
   
   //document.write('<table width="540" border="0" cellpadding="5" cellspacing="5"><tr><td width="659" bgcolor="#666666"><strong><font color="#FFFFFF" size="2" face="Arial">' + proyecto + '</strong></font></td>');
   //document.write('<td width="77" bgcolor="#666666"> <div align="center"><a href="javascript:history.go(-1);"><strong><font size="2" face="Arial">regresar</font></strong></a></div></td></tr></table>');
   
   
   //.. se puso este nuevo encabezamiento
   document.write('<table width="537" height="36" border="0" cellpadding="5" cellspacing="5"><tr><td width="422" height="26" bgcolor="#666666"><font color="#FFFFFF"><strong><font size="2" face="Arial">' + proyecto + '</font></strong></font></td>');
   document.write('<td width="77" bgcolor="#666666"><div align="center"><a href="javascript:history.go(-1);"><strong><font size="2" face="Arial">regresar</font></strong></a></div></td></tr></table>');
   
   
   document.write('<table border="0" cellpadding="5"><tr><td colspan="2" width="320"><font color="#FFFFFF" size="2" face="Arial">' + titulo + '</font></td></tr></table>');
   document.write('<table border="0" cellpadding="5"><tr><td colspan="2" width="100%"><img src="' + imagen + '" border="2" color="#000000"><br><br>');
   //.. quite el regresar inferior
   //document.write('<a href="javascript:history.go(-1);">regresar</a>
   document.write('</td></tr></table></body></html>');
   document.close();
}

// Muestra de la galería...
function shot1(imagen, proyecto, titulo)
{
   document.open("text/html");
   document.clear();
   //document.write('<html><head><link rel="stylesheet" type="text/css" href="../../../styles.css"></head><body bgcolor="#8C735C" background="../../../back_main.gif">');
   document.write('<html><head><link rel="stylesheet" type="text/css" href="../../styles.css"></head><body bgcolor="#8C735C" background="../../back_main.gif">');
   //document.write('<table width="540" border="0" cellpadding="5" cellspacing="5"><tr><td width="659" bgcolor="#666666"><font color="#FFFFFF"><strong>' + proyecto + '</strong></font></td>');
   //document.write('<table width="540" border="0" cellpadding="5" cellspacing="5"><tr><td width="659" bgcolor="#666666"><strong><font color="#FFFFFF" size="2" face="Arial">' + proyecto + '</strong></font></td>');
   //document.write('<td width="77" bgcolor="#666666"> <div align="center"><a href="javascript:history.go(-1);"><strong><font size="2" face="Arial">regresar</font></strong></a></div></td></tr></table>');
   
   //.. se puso este nuevo encabezamiento
   document.write('<table width="537" height="36" border="0" cellpadding="5" cellspacing="5"><tr><td width="422" height="26" bgcolor="#666666"><font color="#FFFFFF"><strong><font size="2" face="Arial">' + proyecto + '</font></strong></font></td>');
   document.write('<td width="77" bgcolor="#666666"><div align="center"><a href="javascript:history.go(-1);"><strong><font size="2" face="Arial">regresar</font></strong></a></div></td></tr></table>');
   
   
   document.write('<table border="0" cellpadding="5"><tr><td colspan="2" width="320"><font color="#FFFFFF" size="2" face="Arial">' + titulo + '</font></td></tr></table>');
   document.write('<table border="0" cellpadding="5"><tr><td colspan="2" width="100%"><img src="' + imagen + '" border="2" color="#000000"><br><br>');
   //.. quite el regresar inferior
   //document.write('<a href="javascript:history.go(-1);">regresar</a>
   document.write('</td></tr></table></body></html>');
   document.close();
}

// Flecha intermitentes...
function over(img1, img2){
document[img1].src = img2; 
}


