/*
        ** external JavaScript-functions **
        by Axel Hahn * http://www.axel-hahn.de/

        Feel free to use and modify this code
        for your own page.
*/

// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// Abkuerzung fuer "document.write()"
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
function w(text)
{
        document.write(text + "\n")
}


// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// Fusszeile schreiben
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
function footer()
{
        w('<a href="#top">Seitenanfang</A> | ');
        w('Email: <A HREF="mailto:info@kaetzchen-online.de">info@kaetzchen-online.de</A><BR>');
        w('letzte &Auml;nderung: ' + document.lastModified + "<BR>");
        if (document.URL.indexOf("file")==0){
        	w('Dateiname: ' + document.URL + '<BR>');
			if (document.title=="[Titel]" || document.title=="")
				w('<div class="error"><B>WARNUNG</B>: Titel der Seite ist nicht gesetzt!</div>');
		}
}

// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// Anzeige der vergroesserten Grafik
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
function Zoom(myPicture)
   {
   var oPopup;
   var iWidth=850;
   var iHeight=600;

   oPopup=window.open('', 'start', 'width=' + iWidth + ',height=' + iHeight + ',scrollbars=0,status=0,menu=0,resizable=1,top=0,left=0');

   oPopup.document.open();
   oPopup.document.write("<HTML>\n");
   oPopup.document.write("<HEAD>\n");
   oPopup.document.write("  <TITLE>Bild-Betrachter</TITLE>\n");
   oPopup.document.write('  <link rel="stylesheet" type="text/css" href="./css/standard.css">');
   oPopup.document.write("</HEAD>\n");
   oPopup.document.write('<body text="#A0A0A0" bgcolor="#000000" link="#F0C880" alink="#A08020" vlink="#F0C880">\n');
   oPopup.document.write('  <TABLE BORDER="0" WIDTH="100%" HEIGHT="100%" CELLPDADDING="0" CELLSPACING="0">\n');
   oPopup.document.write('    <TR><TD VALIGN="TOP" ALIGN="CENTER"><em>zum Schliessen Bild anklicken</em></TD></TR>\n');
   oPopup.document.write('    <TR><TD VALIGN="MIDDLE" ALIGN="CENTER"><A HREF="#" OnClick="JavaScript:self.close();">\n');
   oPopup.document.write('      <IMG SRC="' + myPicture + '" ALT="zum Schliessen Bild anklicken." BORDER=0></A></TD></TR>\n');
   oPopup.document.write('    <TR><TD VALIGN="BOTTOM" ALIGN="CENTER"><em>http://www.kaetzchen-online.de/</em></TD></TR>\n');
   oPopup.document.write('  </TABLE>\n');
   oPopup.document.write('</BODY></HTML>');
   oPopup.document.write("\n\n\n<!-- this HTML code was generated with javascript -- http://www.axel-hahn.de/ -->");
   oPopup.document.close();

   if (oPopup.outerHeight) oPopup.moveTo((screen.availWidth-oPopup.outerWidth)/2, (screen.availHeight-oPopup.outerHeight)/2);
   else oPopup.moveTo((screen.availWidth-iWidth)/2, (screen.availHeight-iHeight)/2);
   oPopup.focus();
   
}
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// EOF * info@axel-hahn.de
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~