// 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 ) {
		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 openpop = "<div style=\"position:absolute;left:22px;top:220px;background:#eee;border:1px solid #ccc;visibility:visible;padding:0.5em;z-index:9999;width:230px;\" id=\"popup\"> <table width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\"><tr><td align=\"right\" valign=\"middle\" height=\"30\"><a style=\"font-size:12px;color:#900;text-decoration:none;\" href=\"#\" onclick=\"chiudi()\">C H I U D I &nbsp;<img src=\"http://www.frcprogetti.com/js/close.gif\" border=\"0\" alt=\"Chiudi\" title=\"Chiudi la finestra\" align=\"absmiddle\" /></a></td></tr><tr><td><a href=\"#\" onClick=\"javascript:window.open('http://www.frcprogetti.com/swf/Avvio_Project cucina.html','_blank','status=yes,top=0,left=0,width=900,height=600');chiudi();\"><img src=\"http://www.frcprogetti.com/js/rendering_ambienti.png\" width=\"230\" height=\"290\" alt=\"cucine\" border=\"0\" /></a></td></tr></table></div>";
