<!--
function SetInfo (valeur) {
jours_validite=3*30;
echeance=new Date();
echeance.setTime(echeance.getTime()+(1000*60*60*24*jours_validite));
echeance=echeance.toGMTString();
document.cookie="afasp_last_logged_in="+escape(valeur)+";expires="+echeance;
}
function GetInfo () {
cook="afasp_last_logged_in";
if (document.cookie.indexOf(cook)==-1) return "";
var debut=document.cookie.indexOf(cook);
debut=debut+cook.length+1;
var fin=document.cookie.length;
var tmp=unescape(document.cookie.substring(debut,fin));
debut=tmp.indexOf("=")+1;
fin=tmp.length;
if (tmp.indexOf(";",debut) != -1) fin=tmp.indexOf(";",debut);
tmp=tmp.substring(debut,fin);
return tmp;
}
function ouvresite() {
date=new Date();
d=((date.getDate()<10) ? '0' : '')+date.getDate();
m=((date.getMonth()<9) ? '0' : '')+(date.getMonth()+1);
var today=new Date();
tmp=today+"";
end=tmp.length;
y=tmp.substring(end-4,end);
h=((date.getHours()<10) ? '0' : '')+date.getHours();
mn=((date.getMinutes()<10) ? '0' : '')+date.getMinutes();
date=d+'/'+m+'/'+y+', '+h+':'+mn;
SetInfo('date='+date);
}
document.write('<META HTTP-EQUIV="Page-Exit" CONTENT="BlendTrans(Duration=0.25)">');
if (navigator.appName!='Opera') document.write('<LINK REL="shortcut icon" TYPE="image/x-icon" HREF="/imgs/favicon.ico" > <LINK REL="icon" TYPE="image/gif" HREF="/imgs/favicon.gif" >');
function Info() {
tmp=GetInfo();
if (tmp != "") {document.writeln('<DD>Guten Tag !</DD><BR>&nbsp;<BR>&nbsp;');document.writeln('<DD>Sie haben sich auf dieser Seite zum letzten Mal eingeloggt am: <FONT COLOR=#00007F>'+tmp+'</FONT></DD><BR>&nbsp;');}
else {document.writeln('<DD>Guten Tag !</DD><BR>&nbsp;<BR>&nbsp;');document.writeln('<DD>Sie sind zum ersten Mal auf unserer Homepage</DD><BR>&nbsp;');}
ouvresite();
}
// -->