
<!--
//sito www.chiesaevangelicaadimazzodirho.it.

function getCookieVal (offset) {
var endstr = document.cookie.indexOf (";", offset);
if (endstr == -1)
endstr = document.cookie.length;
return unescape(document.cookie.substring(offset, endstr));
}

function GetCookie (name) {
var arg = name + "=";
var alen = arg.length;
var clen = document.cookie.length;
var i = 0;
while (i < clen) {
var j = i + alen;
if (document.cookie.substring(i, j) == arg)
return getCookieVal (j);
i = document.cookie.indexOf(" ", i) + 1;
if (i == 0) break;
}
return null;
}

function SetCookie (name, value) {
var argv = SetCookie.arguments;
var argc = SetCookie.arguments.length;
var expires = (argc > 2) ? argv[2] : null;
var path = (argc > 3) ? argv[3] : null;
var domain = (argc > 4) ? argv[4] : null;
var secure = (argc > 5) ? argv[5] : false;
document.cookie = name + "=" + escape (value) +
((expires == null) ? "" : ("; expires=" + expires.toGMTString())) +
((path == null) ? "" : ("; path=" + path)) +
((domain == null) ? "" : ("; domain=" + domain)) +
((secure == true) ? "; secure" : "");
}
// -->









<!-- 
// sito www.chiesaevangelicaadimazzodirho.it.

var expdate = new Date();
var conta;
expdate.setTime(expdate.getTime() +  (24 * 60 * 60 * 1000 * 365)); 
if(!(conta = GetCookie("conta"))) 
conta = 0;
conta++;
SetCookie("conta", conta, expdate, "/", null, false);
if(conta == 1) 
document.writeln(" Benvenuto su questo sito. che annunzia la salvezza dell'anima.");
if(conta >= 2 && conta <=4)  
document.writeln(" bentornato !!!");
if(conta >= 5 && conta <=7) 
document.writeln(" A quanto pare questo sito ti, aiuta a conoscere il Dio Vivente");
if(conta >= 8 && conta <=11)
document.writeln(" Sei ancora qui, forse non ti è chiaro che Ges&ugrave; ti chiama. ?");
if(conta>=12 && conta<=15) 
document.writeln(" Ma allora insisti, devo supporre che Ges&ugrave;, benedice l'anima tua.");
if(conta >15) 
document.write(" Va bene, non ti dico pi&ugrave; nulla, ormai ti considero un credende in Cristo Ges&ugrave;.");

// -->




