function PopImmagini(label,immagine,width,height,type) {
	Win = window.open("");
	Win.document.write("<html><head><title>"+label+"</title></head>");
	if (type == "vendite") {
	Win.document.write("<body style='background-color: #ff8900;'>");
	} else {
		Win.document.write("<body style='background-color: #6689aa;'>");
	}
	Win.document.write("<center>");
	Win.document.write("<h1 style='width:"+width+"; border: 2px solid white; font-size: 200%; color:white'>IMMOBILIARE COLLA</h1>");
	Win.document.write('<img src="'+immagine+'" style="border: 2px solid white; width:'+width+'; height:'+height+';">');
	Win.document.write("</center>");
	Win.document.write("</body></html>");
	Win.document.close();
	// If we are on NetScape, we can bring the window to the front
	if (navigator.appName.substring(0,8) =="Netscape") Win.focus();
}