<!--function ImprimirArea()	{	var MiArea, Nuevohtml, ElementosHEAD, NuevoHEAD, AreaHTML, NuevaVentana;      var NavegadorActual= new DetectarNavegador();	if (!document.all && !document.getElementById)      		{      		alert("Esta funci—n no est‡ disponible en este navegador.");      		return;      		}		MiArea = document.getElementById("AreaImprimible");	if (MiArea)		{		Nuevohtml = "";		Nuevohtml += "<!DOCTYPE HTML PUBLIC '-//W3C//DTD HTML 4.01 Transitional//EN'>\n";		Nuevohtml += "<HTML>\n<HEAD>\n";		ElementosHEAD = document.getElementsByTagName('Head');		if (ElementosHEAD)			{			NuevoHEAD = ElementosHEAD[0].innerHTML;			if (NuevoHEAD)				{				var BuscarTexto = "behar.css";				var InicioTexto = NuevoHEAD.indexOf(BuscarTexto)				var NuevoHEAD1 = NuevoHEAD.substring(0, InicioTexto);				var NuevoHEAD2 = NuevoHEAD.substring(InicioTexto+9);				NuevoHEAD= NuevoHEAD1+"beharprint.css"+NuevoHEAD2;				Nuevohtml += NuevoHEAD;				Nuevohtml += "\n";				}			}		Nuevohtml += "</HEAD>\n<BODY bgcolor='#FFFFFF' leftmargin='0' topmargin='0' marginwidth='0' marginheight='0'>\n";        	if(NavegadorActual.ns6)			{			Nuevohtml += "<div class='cajans6'>\n";			}		else if(NavegadorActual.ie5)			{			Nuevohtml += "<div class='cajaie5'>\n";			}		else 				{			Nuevohtml += "<div class='caja'>\n";			}		Nuevohtml += "<span class='cabecera'>Lisa Block de Behar</span><br>\n";		Nuevohtml += "<span class='cabecera2'>http://blockdebehar.port5.com</span><br><br><br><br>\n";		AreaHTML = MiArea.innerHTML;		if (AreaHTML)			{			Nuevohtml += AreaHTML;			}		Nuevohtml += "\n</div>\n";		Nuevohtml += "</BODY>\n</HTML>";		NuevaVentana = window.open("","Impresion", "left= 15, top=80, height=370, width=760, scrollbars=yes, resizable=yes, toolbar=yes");		NuevaVentana.document.write(Nuevohtml);		NuevaVentana.document.close();		NuevaVentana.focus();		}	else		{		alert("No existe un ‡rea marcada como imprimible.")		return;		}	return;	}function DetectarNavegador(){	    this.ver = navigator.appVersion;	    this.agent = navigator.userAgent;	    this.dom = document.getElementById?1:0;	    this.opera6 = this.agent.indexOf("Opera 6")>-1;	    this.opera5 = this.agent.indexOf("Opera 5")>-1;	    this.opera = (this.opera6 || this.opera5);	    this.ie5 = ((this.ver.indexOf("MSIE 5")>-1 || this.ver.indexOf("Internet Explorer 5")>-1) && this.dom && !this.opera)?1:0;	    this.ie6 = ((this.ver.indexOf("MSIE 6")>-1 || this.ver.indexOf("Internet Explorer 6")>-1) && this.dom && !this.opera)?1:0;	    this.ie4 = (document.all && !this.dom && !this.opera5)?1:0;	    this.ie = this.ie4 || this.ie5 || this.ie6;	    this.mac = this.agent.indexOf("Mac")>-1;	    this.ns6 = (this.dom && parseInt(this.ver) >= 5)?1:0;	    this.ns4 = (document.layers && !this.dom)?1:0;	    this.supp = (this.ie6 || this.ie5 || this.ie4 || this.ns4 || this.ns6 || this.opera5 || this.opera6);	    return this;}// -->