function preview_foto(idfoto, larghezza, altezza){
	altezza=altezza+80;
	larghezza=larghezza+40;
	window.open('preview_foto.php?app=&idfoto='+idfoto, 'preview'+idfoto, "height="+altezza+",width="+larghezza+",toolbar=no,scrollbars=yes,resizable=yes,status=yes", "replace=false");
}

function openwin (url, name, width, height) {
	width  = width  + 80;
	height = height + 40;
	window.open(url, name, "height="+height+",width="+width+",toolbar=no,scrollbars=yes,resizable=yes,status=no", "replace=true");
}

function slideshow(idimmobile, idfoto, larghezza, altezza) {
	altezza = altezza+80;
	larghezza = larghezza+40;
	window.open('slideshow.php?id='+idimmobile+'&app=&idfoto='+idfoto, 'preview'+idfoto, "height="+altezza+",width="+larghezza+",toolbar=no,scrollbars=yes,resizable=yes,status=yes", "replace=false");
}

function toggle_display(obj) {
	
	var el = document.getElementById(obj);
	//alert(el.style.display);
	if ( el.style.display != 'none' ) {
		el.style.display = 'none';
	}
	else {
		el.style.display = 'block';
	}
}

// ------- Yahoo! UI ---------------






















