<!--
//======================================================
//		FUNZIONI INDEX
//======================================================
function new_site_window(myAddress) { 
	width = 800;
	height = 600;
	x = 2, y = 2;

	if (screen) {
		y = (screen.availHeight - height)/2 -20;
		x = (screen.availWidth - width)/2 -10;
	}
		
	rnWin = window.open(myAddress,'RIPEMAGAZINE', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=800,height=600,top='+y+',left='+x);
}

//======================================================
//	    FUNZIONI COMUNI A TUTTE LE PAGINE
//======================================================
function preload_Img() {
	var d=document; 
	if(d.images){ 
		if(!d.MM_p){
			d.MM_p=new Array();
		}
		var i,j=d.MM_p.length,a=preload_Img.arguments;
		for(i=0; i<a.length; i++){
			if (a[i].indexOf("#")!=0){
				d.MM_p[j]=new Image;
				d.MM_p[j++].src=a[i];
			}
		}
	}
}
function meseattuale(){
	var d = new Date();
	var t_mon = d.getMonth();      // Returns the month as a digit
	return(t_mon);
}
function Stampa() {
	window.print();
}

function Close() {
	window.close()
}
function OpenCalendar(myAddress){
	width = 760;
	height = 550;
	x = 2, y = 2;

	if (screen) {
		y = (screen.availHeight - height)/2 -20;
		x = (screen.availWidth - width)/2 -10;
	}
		
	rnWin = window.open(myAddress,'CALENDAR', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=760,height=550,top='+y+',left='+x);
}

//======================================================
//	    FUNZIONI PAGINA "TOPFRAME"
//======================================================
function menuover(myMenu){
	document.all(myMenu).className = "txt_menuover";
}
function menuout(myMenu){
	document.all(myMenu).className = "txt_menuout";
}

function menuDestination(menunum){
	for (var i=0; i<=numMenues-1; i++){
		if 	(i==menunum){
			window.parent.frames(1).location.href = vMenu[i][1];
		}
	}
}

//======================================================
//	    FUNZIONI PAGINA "LOCATION"
//======================================================
function OpenMap(){
var jsParametri800;
var jsParametri1024;
var jsParametriMigliori;

	width = 780;
	height = 580;
	x = 2, y = 2;

	if (screen) {
		y = (screen.availHeight - height)/2 -20;
		x = (screen.availWidth - width)/2 -10;
	}
	
	Indirizzo ="detailedmap.htm";		
	rnWin = window.open(Indirizzo,'AuxBardeches', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width=780,height=580,top='+y+',left='+x);

}

function ReplayAnimation(){
	window.location.href = "location.htm";
}

//======================================================
//	    FUNZIONI PAGINA "CONTACT US"
//======================================================
function inviaInfo(){
var controllo="OK";
	
	if (document.all("txtName").value == ""){
		controllo="NOK"
		alert("You forgot to insert your name!");
		document.all("txtName").focus();
	} else {
		if (document.all("txtTel").value == ""){
			if (document.all("txtEmail").value == ""){
				controllo="NOK"
				alert("Please provide either your telephone number or e-mail address so that we can contact you.");
				document.all("txtTel").focus();
			}
		}
	}
	if (controllo == "OK"){
		main.submit();
	}
}
// -->
