function leggiCookie(nome) { if (document.cookie == '') { // there's no cookie, so go no further return false; } else { // there is a cookie var firstChar, lastChar; var theBigCookie = document.cookie; firstChar = theBigCookie.indexOf(nome); // find the start of 'nome' if(firstChar != -1) { // if you found the cookie firstChar += nome.length + 1; // skip 'nome' and '=' lastChar = theBigCookie.indexOf(';', firstChar); // Find the end of the value string (i.e. the next ';'). if(lastChar == -1) lastChar = theBigCookie.length; return unescape(theBigCookie.substring(firstChar, lastChar)); } else { // If there was no cookie of that name, return false. return false; } } } // leggiCookie function goHome(){ //if NS 4+ if (document.layers) window.home() //else if IE 4+ else if (document.all) window.location="about:home" else alert("You need NS 4+ or IE 4+ to go back home!") } function msgBenvenuto() { // da chiamare al caricamento delle pagine (home o altre) // per avvisare che è un sito x adulti. // Setta un cookie da un'ora per evitare di rivedere il msg ad ogni reload. // 21.01.2003 if (!leggiCookie('visitaInCorso')) { if ( ! confirm ('B E N V E N U T I IN ANNA di GIAN \n\nAvvisiamo che questo è un sito per adulti, '+ 'quindi se siete minorenni, '+ 'siete invitati ad uscire immediatamente.\n\n'+ 'Desiderate proseguire?\n\n\n\n'+ 'W E L C O M E O N ANNA di GIAN \n\nWe warn you that this is a site for adults only, '+ 'so if you are not, '+ 'you are kindly requested to exit immediately.\n\n'+ 'Do you want to proceed?') ) { goHome(); return; } } // setta il cookie a un'ora in ogni caso var the_date = new Date(); the_date.setTime(the_date.getTime() + 1000 * 60 * 60); var the_cookie_date = the_date.toGMTString(); var the_cookie = "visitaInCorso=1;path=/;expires=" + the_cookie_date; document.cookie = the_cookie; } // msgBenvenuto