function mostra_id_prenotazione(iframeid, url) {       
  		render('id_prenotazione');
  		render('id_chiusura_prenotazione');  
  		unrender('id_video');
  		unrender('id_chiusura');
  		if (document.getElementById)
		document.getElementById(iframeid).src=url;	  		
}

function nascondi_id_prenotazione(iframeid, url) {       
  		unrender('id_prenotazione');
  		unrender('id_chiusura_prenotazione');
  		if (document.getElementById)
		document.getElementById(iframeid).src=url;
} 