function getInterstizial(urlInterstizial){
	//Verifico la presenza del cookie
	var cookieUtente= getCookie('vp_interstitial');
	//se il cookie non esiste
	if (cookieUtente != 'YES'){
		//creo il cookie
		setCookie( 'vp_interstitial', 'YES', 60 );
		//effettuo il redirect alla pagina pubblicitaria
		location.href = urlInterstizial + '?urlContent=' + escape(location.href);
	}
}
