// JavaScript Document

function abrirPopup (URL, ancho, alto){
	window.open(URL,"","width="+ancho+", height="+alto+", scrollbars=no, menubar=no, location=no, resizable=no")
}

function enviarAmigo (){
	var ancho = 400 ;
	var alto = 340 ;
	var URL = 'pop_alquiler_recomendar.php?url=' + document.location ;
	window.open(URL,"","width="+ancho+", height="+alto+", scrollbars=no, menubar=no, location=no, resizable=no")
}

function imprSelec(nombre)
{
	var ficha = document.getElementById(nombre);
	var ventimp = window.open(' ', 'popimpr');
	ventimp.document.write( ficha.innerHTML );
	ventimp.document.close();
	ventimp.print( );
	ventimp.close();
}

function resize_imatge(){

	w_actual=document.getElementById("foto").width;
	h_actual=document.getElementById("foto").height;
	
//	alert(document.getElementById("foto").width);
	//alert(document.getElementById("foto").height);
	
	diferencia=(w_actual-h_actual)*100/275;
	//alert(diferencia);
	
	if(diferencia<20){  //Vertical
		document.getElementById("foto").height=206;
	}
	if(diferencia>=20 && diferencia<=30) {  // Quadrada
		document.getElementById("foto").width=275;
		document.getElementById("foto").height=206;	
	}
	if(diferencia>30){ //Horitzontal
		document.getElementById("foto").width=275;
	}


document.getElementById("foto").style.visibility="visible";
}