if ( navigator.platform && ( navigator.platform.indexOf( 'Mac' ) ) > - 1 ) {
	fileName = 'mac';
} else if ( navigator.platform && ( navigator.platform.indexOf( 'Linux' ) ) > - 1 ) {
	fileName = 'lnx_ns';
} else {
	if ( navigator.appName.indexOf( 'Microsoft' ) > - 1 ) {
		fileName = 'win_ie';
	} else {
		fileName = 'win_ns';
	}
}
document.write( '<style type="text/css">@import url(/css/' + fileName + '.css);</style>' );
function modulo() {
	window.open( "modulo.html", "modulo", "width=520,height=500,scrollbars=1" );
	self.close();
}
function abilitaSubmit() {
	if ( document.modulo.extra3[0].checked || document.modulo.extra3[1].checked ) {
		document.modulo.invia.readOnly = false;
		document.modulo.invia.disabled = false;
	} else {
		document.modulo.invia.readOnly = true;
		document.modulo.invia.disabled = true;
	}
}
function abilitaCoupon() {
	if (	document.modulo.firstName.value == "" ||
			document.modulo.lastName.value == "" ||
			document.modulo.town.value == "" ||
			document.modulo.email.value == "" ) {
			document.modulo.coupon.readOnly = true;
			document.modulo.coupon.disabled = true;
	} else {
		document.modulo.coupon.readOnly = false;
		document.modulo.coupon.disabled = false;
	}
}
function stampaCoupon( queryString ) {
	window.open( "coupon.php" + queryString );
}
function convalidaForm() {
	if ( document.modulo.firstName.value == "" ) {
		alert( "Inserire il nome" );
		return false;
	}
	if ( document.modulo.lastName.value == "" ) {
		alert( "Inserire il cognome" );
		return false;
	}
	if ( document.modulo.town.value == "" ) {
		alert( "Inserire la località" );
		return false;
	}
	if ( document.modulo.email.value == "" ) {
		alert( "Inserire l'indirizzo e-mail" );
		return false;
	}
	if (	document.modulo["brochures[0]"].checked ||
			document.modulo["brochures[1]"].checked ||
			document.modulo["brochures[2]"].checked ||
			document.modulo["brochures[3]"].checked ||
			document.modulo["brochures[4]"].checked ||
			document.modulo["brochures[5]"].checked ) {
		if ( document.modulo.address.value == "" ) {
			alert( "L'indirizzo è obbligatorio per ricevere il materiale selezionato" );
			return false;
		}
		if ( document.modulo.zip.value == "" ) {
			alert( "Il CAP è obbligatorio per ricevere il materiale selezionato" );
			return false;
		}
	}
	if ( ! (	document.modulo["brochures[0]"].checked ||
				document.modulo["brochures[1]"].checked ||
				document.modulo["brochures[2]"].checked ||
				document.modulo["brochures[3]"].checked ||
				document.modulo["brochures[4]"].checked ||
				document.modulo["brochures[5]"].checked ||
				document.modulo.extra2.checked ||
				document.modulo.extra1.value != '' ) ) {
		alert( "Compilare correttamente la parte di richiesta informazioni" );
		return false;
	}
}
function chiamaMetodo( frame ) {
	var IE = navigator.appName.indexOf( "Microsoft" ) != - 1;
	var filmato = IE ? window.mainMovie : window.document.mainMovie;
	if ( filmato ) {
		while ( filmato.PercentLoaded() < 100 ) {
		}
		filmato.GotoFrame( frame - 1 );
	}
}
function loadHomePage() {
	setTimeout( 'location="/super.html/option/home"', 5000 );
}
function loadMap() {
	if ( window.top.frames.mappa.location.href.indexOf('mappa.html') == - 1 ) {
		window.top.frames.mappa.location.href = '/mappa.html';
	}
}
function rotateThemes( themeID ) {
	i = 1;
	while ( theDiv = document.getElementById( 'theme' + i ) ) {
		if ( i == themeID ) {
			theDiv.style.display = 'block'
			if ( document.getElementById( 'theme' + ( i + 1 ) ) ) {
				next = i + 1;
			} else {
				next = 1;
			}
		} else {
			theDiv.style.display = 'none'
		}
		i++;
	}
	setTimeout( "rotateThemes(" + next + ")", 15000 );
}