﻿// JScript File

/*  Abre un pop-up 
*/
function abrefiestra(url,ancho,alto){
	var sPropiedades = "width=" + ancho + ",height=" + alto + ",toolbar=0,location=0,directories=0,status=no,menubar=no,scrollbars=0,resizable=1,left=110,top=20"
	window.open(url,'',sPropiedades);
}

/*  Abre un pop-up de un inmueble (define un ancho fijo)
*/
function abreinmo(ref){
    var sPropiedades = "width=620,height=500,toolbar=0,location=0,directories=0,status=no,menubar=no,scrollbars=1,resizable=1,left=120,top=20"
	window.open('ver_inmo.aspx?inmo='+ref,ref,sPropiedades);
}

/*  Abre un pop-up de una promocion (ancho fijo + barra horizontal)
*/
function abrepromo(ref){
	var sPropiedades = "width=620,height=550,toolbar=0,location=0,directories=0,status=no,menubar=no,scrollbars=1,resizable=1,left=110,top=10"
	window.open('ver_promo.aspx?promo='+ref,ref,sPropiedades);
}

/*  Abre un pop-up interno 
*/
function abreinterno(url,ancho,alto){
	var sPropiedades = "width=" + ancho + ",height=" + alto + ",toolbar=0,location=0,directories=0,status=no,menubar=no,scrollbars=1,resizable=1,left=60,top=20"
	window.open(url,'',sPropiedades);
}

function AmpliaImagen(principal,mini)
{
    document.getElementById(principal).src=mini.src;
}

/*  solo permite escribir numeros
*/
function SoloNum(){
	if (event.keyCode!=13&&(event.keyCode<48||event.keyCode>57))
		event.keyCode=0;
}

//pte. de revisar. como funciona en firefox
function limite(elemento,max,identif) { 
    if (elemento.value.length > max) elemento.value=elemento.value.substr(0,max);
    num = max - elemento.value.length;
    identif.innerHTML = num;
} 



// (c) 2007 by iportal.es