// JavaScript Document
function showFooter(){
var footerHTML = "<table width=\"780\" height=\"40\" border=\"0\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"table-layout:fixed\">";
	footerHTML+="<col width=\"411\" />";
	footerHTML+="<col width=\"369\" />";
	

	footerHTML+="<tr><td width=\"411\" background=\"images/bg_footer01.gif\" class=\"bg_footer01\">";
	footerHTML+="<span class=\"textoFooter\"><a href=\"terminos.html\" class=\"linkFooter\">";
	footerHTML+="T&eacute;rminos y Condiciones</a> | <img src=\"images/mail_icon.gif\" align=\"absmiddle\"> <a href=\"contactenos.html\" class=\"linkFooter\">";
	footerHTML+="Cont&aacute;ctenos</a> | <img src=\"images/mail_icon.gif\" align=\"absmiddle\"> <a href=\"sugerencias.html\" class=\"linkFooter\">";
	footerHTML+="Sugerencias</a></span></td>";


	footerHTML+="<td width=\"469\" align=\"right\" valign=\"bottom\" class=\"bg_footer02\">";

	footerHTML+="<span class=\"textoFooter\">Design by:</span>";
	footerHTML+="<a href=\"http://www.iguanahost.com\">";
	footerHTML+="<img src=\"images/icono_web.gif\" alt=\"iguanaHost\" width=\"56\" height=\"26\" border=\"0\" align=\"absmiddle\" />";
	footerHTML+="</a></td></tr></table>";
	document.writeln(footerHTML);
}



//abre ventana
function abreVentana(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
//-->