//***********************************************
//** Abrir popup
//***********************************************
function VerFoto(foto,alt,ancho,alto) {
	imageName = foto;
	imageWidth = ancho;
	imageHeight = alto;
	posLeft = (document.body.clientWidth/2)-(imageWidth/2);
	posTop  = (document.body.clientHeight/2)-(imageHeight/2);

	newWindow = window.open("","newWindow","width="+imageWidth+",height="+imageHeight+",scrollbars=no,left="+posLeft+",top="+posTop);
	newWindow.document.open();
	newWindow.document.write('<html><head><title>Centre Inmobiliari MULTILLAR</title></head><body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" onBlur="self.close()">');
	newWindow.document.write('<img src=\"'+imageName+'\" width='+imageWidth+' height='+imageHeight+' title=\"'+alt+'\">');
	newWindow.document.write('</body></html>');
	newWindow.document.close();
	newWindow.focus();
}