// JavaScript Document

function header(m) {
	document.write('<object type="application/x-shockwave-flash" data="immagini/eldorado_2010.swf?pagina='+m+'" width="960" height="465">\n');
	document.write('<param name="movie" value="immagini/eldorado_2010.swf?pagina='+m+'" /> \n');
	document.write('<param name="wmode" value="transparent" /> \n');
	document.write('<param name="quality" value="high" /> \n');
	document.write('</object>\n');
}

function home_btn() { 
        document.location.href = "home.asp"; 
    }
function parco_btn() { 
        document.location.href = "parco.asp"; 
    }
function abbonamenti_btn() { 
        document.location.href = "abbonamenti.asp"; 
		/*alert('Gli abbonamenti per l\'Estate 2010 non sono ancora prenotabili. Ritornaci a trovare!');*/
    }
function estate_btn() { 
       document.location.href = "estate2010.asp"; 
		/*alert('La pagina dedicata all\'Estate 2010 è in costruzione. Ritornaci a trovare!');*/
    }
function dovesiamo_btn() { 
        document.location.href = "dovesiamo.asp"; 
    }
		
	


function gestione_link_esterni() {
	if (!document.getElementsByTagName) 
		return;
	var anchors = document.getElementsByTagName("a");
	for (var i=0; i<anchors.length; i++) {
		var anchor = anchors[i];
		if (anchor.getAttribute("href") && anchor.getAttribute("rel") == "link_esterno")
			anchor.target = "_blank";
	}
}

window.onload = gestione_link_esterni;