/* ----------- Anzeigen von Bildern 2----------------------------*/

function Frames2(URL1)
{
 document.clear();
 document.open("text/html");
 document.write('<html>');
 document.write('<body style="background-attachment:fixed; background-position:0 40">');
 document.write('<center><img src="'+URL1+'"></center>');
 document.write('</body></html>');
 document.close();
}

/*-------------- Funktionen "Letzte Aktualisierung" -------*/

//Dieses Skript stammt von Michael Mailerīs JavaScripts
//URL: http://www.webaid.de/js  --  eMail: mm@webaid.de
//Bitte   entfernen   Sie   diesen   Vermerk   nicht  !
//Modified by: Michael Boll [ESN] eMail: webmaster@anime-net.de
//homepage: http://www.anime-net.de
//DIESEN VERMERK BITTE NICHT ENTFERNEN.
//Dieses Script hatte im Netscape nen Y2K Bug und wurde modifiziert. 
function datum(){ 
mn=new Array("01","02","03","04","05","06","07","08","09","10","11","12") 
d=new Date(document.lastModified) 
m=mn[d.getMonth()] 
t=d.getDate() 
jj=d.getYear() 
j=(jj>=2000)?jj:((jj<80)?jj+2000:jj+1900) 
dat=(t+"."+m+"."+j)} 
datum(); document.write("<font color='#000000'>Letzte Aktualisierung am " + dat + "</font>")