var popprenotavolo_id = "PopPrenotaVolo";
var popprenotavolo_status = 0;

function ShowPopPrenotaVolo()
{
	popprenotavolo_status += 1;
	document.getElementById(popprenotavolo_id).style.visibility = "visible";
	document.getElementById("divFramePrenotaVoli").innerHTML="<iframe id=\"framePrenotaVoli\" src=\"prenotazione_voli.html\" marginwidth=\"0\" marginheight=\"0\" frameborder=\"0\" height=\"100%\" width=\"100%\" scrolling=\"auto\"></iframe>";
}

function CheckPopPrenotaVolo(id)
{
  popprenotavolo_status -= 1;
  setTimeout('HidePopPrenotaVolo()',500);
}

function HidePopPrenotaVolo()
{
	document.getElementById(popprenotavolo_id).style.visibility = "hidden";
}

function refresh_iframe() 
{
	var myIFrame = document.getElementById('framePrenotaVolo');
	if (!myIFrame) return false;
	myIFrame.src = myIFrame.src;
}

