
function msg_clear(idClear){
	idMsg = document.getElementById(idClear);
	idMsg.style.visibility = "hidden";
}

function popupService(url, name, widthPx, heightPx){
   if(widthPx==0 && heightPx==0){
   		window.open(url);
    }else{
	var w = window.open(url,name,'width='+widthPx+',height='+heightPx);
	w.focus();
    }
}

function image_change(name, msg){
	var msgBox = document.getElementById(msg);
	if(document.getElementById(name)){
		msgBox.innerHTML = '';
	}else{
		msgBox.innerHTML = '<input type="file" id="'+name+'" name="'+name+'" />';
	}
}

function proposals_load(categoria, start){
	messaggio = 'contenuti';
	httpRequest("POST","../elenco_proposte.php",true,handleLoadActivityResponse,"categoria="+categoria+"&start="+start);
}

function realizations_load(start){
	messaggio = 'contenuti';
	httpRequest("POST","../elenco_realizzazioni.php",true,handleLoadActivityResponse,"&start="+start);
}

function proposal_show(categoria, start, idImmobile){
	messaggio = 'contenuti';
	httpRequest("POST","../dettagli_immobile.php",true,handleLoadActivityResponse,"categoria="+categoria+"&start="+start+"&idImmobile="+idImmobile);
}

function image_show(obj, azione){
	var idobj = document.getElementById(obj);
	idobj.style.visibility = azione;
}

function schiarisci_immagine(image_name, msg_name){
	var msgBox = document.getElementById(msg_name);
	msgBox.innerHTML = '<img src="../images/'+image_name+'" />';
}

function oscura_immagine(msg_name){
	var msgBox = document.getElementById(msg_name);
	msgBox.innerHTML = '';
}

function cresci(){
	contenuti = document.getElementById('contenuti');
	alt_contenuti = contenuti.clientHeight;
	//alert(alt_contenuti);
	if(alt_contenuti!=0 && alt_contenuti>372){
		//document.getElementById('contenitore').style.height=316+alt_contenuti+40;
		document.getElementById('cnt_contenuti').style.height=alt_contenuti+40;
	}else{
		contenuti.style.height=372;
		document.getElementById('cnt_contenuti').style.height=372+40;
		//document.getElementById('contenitore').style.height=316+372;
	}
}