// JavaScript Document
function ImpostaSetCookie(c_name,value,expiredays) {
	var exdate=new Date();
	exdate.setDate(exdate.getDate()+expiredays);
	document.cookie=c_name+ "=" +escape(value)+
	((expiredays==null) ? "" : ";expires="+exdate.toGMTString())+
	"; path=/"; 

	document.getElementById("pub").style.width = 1;
	document.getElementById("pub").style.height = 1;
	document.getElementById("pub").innerHTML = '';
}

function ImpostaGetCookie(c_name) {
if (document.cookie.length>0)
  {
  c_start=document.cookie.indexOf(c_name + "=");
  if (c_start!=-1)
    { 
    c_start=c_start + c_name.length+1; 
    c_end=document.cookie.indexOf(";",c_start);
    if (c_end==-1) c_end=document.cookie.length;
    return unescape(document.cookie.substring(c_start,c_end));
    } 
  }
return "";
}

if (ImpostaGetCookie('disclaimer')=="") {
	if(document.all) {
		larg = document.body.clientWidth;
		//haut = document.body.clientHeight;
		haut = 3000;
	} else {
		larg = screen.width;
		//haut = screen.height;
		haut = 3000;
	}

		
	html_haut = '<table style="border:0;height:'+haut+'px" width="'+larg+'"><tr><td valign="top" align="center" style="background:#000000;">';
	html_haut += '<br /><br /><br /><br /><br /><br />';
	html_bas = '</td></tr></table>';

	html_mil = '<table style="height:270px" border="0" align="center" width="630" cellpadding="0" cellspacing="0" bgcolor="#000000">';
	html_mil += '<tr><td>';
	html_mil += '<p align="center"><img src="http://www.videoamatoriali.org/templates/frontend/orange/images/logo.png" alt="video amatoriali contiene materiale di sesso esplicito"  /></p><h3 align="center">Attenzione, Video Amatoriali &egrave; un sito vietato ai minori !<br><br><b>Video Amatoriali</b> &egrave; un sito riservato ad un pubblico di soli adulti.<br><br><b>Video Amatoriali</b> contiene dei testi, delle foto e dei video a carattere pornografico che possono essere scioccanti per certe sensibilit&agrave;.<br></p><br><br>';
	html_mil += '<h3 align="center"><a title="HO LETTO SONO MAGGIORENNE VOGLIO PROSEGUIRE" href="#" onclick="ImpostaSetCookie(\'disclaimer\', 1, null);return(false)">HO LETTO SONO MAGGIORENNE VOGLIO PROSEGUIRE</a>';
	html_mil += '</h3>';
	html_mil += '</td></tr></table>';

	document.getElementById("pub").style.width = larg;
	document.getElementById("pub").style.height = haut;
	document.getElementById("pub").innerHTML = html_haut+html_mil+html_bas;	
}