// JavaScript Document
function abre(img,an,al){
		an=an+17
		al=al+67
		var v=open('','v','left=0,top=0, width='+an+',height='+al+',resizable=0,status=yes')
		v.document.close() <!-- abrir una pagina nueva dentro de la ventana -->
		v.document.open() <!-- abrir una pagina nueva dentro de la ventana -->
		v.resizeTo(an,al) <!-- Para cambiar el alto y el ancho -->
		v.document.write('<title>Galeria .: Asesor&iacute;a Inmobiliar&iacute;a: M & R :.   ...................................................</title>')
		v.document.write('<link href="../css/creados.css" rel="stylesheet" type="text/css">')
		v.document.write('<body class="Td" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">')
		v.document.write('<table class="Td" border=0 width=100% height=100%><tr class="Td"><td width=100% height=100% align=center valign=middle><a href="#"><img src="'+ img + '" onClick="self.close()" class="imagenes"></a></td></tr></table>')
		v.focus ()
		v.document.write('</body>')
}

function abrePopUpImpresion(ruta){
		open(ruta,'impresion','width=570, height=600, scrollbars=YES')
}

function abrePopUpAmigo(tipo,id){
		open('enviarAmigo.aspx?tipo=' + tipo + '&id=' + id,'impresion','width=570, height=200, scrollbars=YES')
}

function ajustaAltura() {
    var derecha=(document.getElementById("zonaDcha")).offsetHeight;
    var centro=(document.getElementById("contenidos")).offsetHeight;
    if (centro+33>derecha) {
        (document.getElementById("zonaDcha")).style.height=(centro+33) + "px";
        (document.getElementById("izq")).style.height=(centro-20) + "px";
    } else {
        (document.getElementById("izq")).style.height=(derecha-58) + "px";
    }    
}   

function favorito(texto) { 
    if (window.external)
        external.AddFavorite(window.location, "INMOBILIARIA M&R - " + texto) 
    else 
        alert("Su navegador no soporta esta caracteristica"); 
}
