// imposta il cookie sNome = sValore
// per la durata di iGiorni
function getCookie( name ) {
	var start = document.cookie.indexOf( name + "=" );
	var len = start + name.length + 1;
	if ( ( !start ) && ( name != document.cookie.substring( 0, name.length ) ) ) {
		return null;
	}
	if ( start == -1 ) return null;
	var end = document.cookie.indexOf( ';', len );
	if ( end == -1 ) end = document.cookie.length;
	return unescape( document.cookie.substring( len, end ) );
}

function setCookie( name, value, expires, path, domain, secure ) {
	var today = new Date();
	today.setTime( today.getTime() );
	if ( expires ) 
	{
		if (expires == 2)
			expires = expires * 1000 * 60 * 60 * 48;
		else
			expires = expires * 1000 * 60 * 60 * 24;
	}
	var expires_date = new Date( today.getTime() + (expires) );
	document.cookie = name+'='+escape( value ) +
		( ( expires ) ? ';expires='+expires_date.toGMTString() : '' ) + //expires.toGMTString()
		( ( path ) ? ';path=' + path : '' ) +
		( ( domain ) ? ';domain=' + domain : '' ) +
		( ( secure ) ? ';secure' : '' );
}


function chiudi() {
el = document.getElementById("popup");
el.style.visibility="hidden";
}

var ilpopup = "<div style=\"position: absolute; left: 500px; top: 220px; visibility: visible;\" id=\"popup\"><div class=\"contactformbox\"><a class=\"close\" href=\"#\" onclick=\"chiudi()\"><img src=\"http://www.cucinarefacile.com/images/overlayer/close.gif\" onload=\"javascript:setCookie('popup', 'ok', 1, '/', 'www.cucinarefacile.com');\" border=\"0\" alt=\"chiudi\" /></a><h3>Nuovo Ricettario</h3><h3>Gratuito</h3><h3><span>Cinquanta Ricette di Cucina</span></h3><h6><span>50 fantastiche ricette</span> di cucina divise in categorie, <span>ebook pdf pronto</span>, stampalo e cucina!</h6><h7> *Omaggio ai nuovi iscritti alla newsletter</h7><form method=\"post\" action=\"http://autorisponditori.com/ar/subc.php\" name=\"frm_newsletter\" class=\"contactform\"><span class=\"input-text\"><input class=\"p-input-n\" name=\"aid\" value=\"1775\" type=\"hidden\"><input class=\"p-input-e\" name=\"required\" value=\"lemail,lfname\" type=\"hidden\"><input class=\"p-input-c\" name=\"filledfrm\" value=\"mysite.htm\" type=\"hidden\"><input name=\"lfname\" id=\"name\" class=\"req-string\" onfocus=\"if (this.value == 'Nome') {this.value = '';}\" onblur=\"if (this.value == '') {this.value = 'Nome';}\" value=\"Nome\" type=\"text\"></span><span class=\"input-text\"></span><span class=\"input-text\"><input name=\"lemail\" id=\"email\" class=\"req-email\" onfocus=\"if (this.value == 'E-mail') {this.value = '';}\" onblur=\"if (this.value == '') {this.value = 'E-mail';}\" value=\"E-mail\" type=\"text\"></span><span class=\"input-text\"></span><!-- Modifica --><br /><!-- Fine Modifica --><span class=\"button\"><input id=\"submit\" name=\"btnG\" value=\"Iscriviti\" type=\"submit\"></span><br /></form><div id=\"send\"></div><div id=\"mess\"></div></div></div>";
