function getmail(i)
{
	if(i=='1') mail="info@boquerjulia.es";
	else if(i=='2') mail="x@boquerjulia.es";
	return mail;
}

function mailpage(i)
{
	str="";
	str2="";
	mail=getmail(i);
	mail_str = "mailto:"+mail;//+"?subject=WEB " + document.title + str2;
//	mail_str += "&body=";
//	mail_str += str;
	location.href = mail_str;
}


function mailinfo(str)
{
	mail=getmail(1);
	mail_str = "mailto:"+mail+"?subject=boquerjulia.es: " + str;
//	mail_str += "&body=";
//	mail_str += str;
	location.href = mail_str;
}


function imprSelec()
{
var nombre="div_piso_id";
var ficha = document.getElementById(nombre);
var ventimp = window.open(' ', 'popimpr');

var caption=document.getElementById('MB_caption');

ventimp.document.write(caption.innerHTML);
ventimp.document.write('<br><br>');
ventimp.document.write( ficha.innerHTML );
ventimp.document.close();
ventimp.print( );
ventimp.close();
} 
