/* 
    Titel: FunctionLibrary
    Autor: Andreas Kunter
    email: andreas.kunter@sk-koeln.de

    Copyright (c) Dolphin Webdesign & Programmierung - Andreas Kunter, 2000. 
    All rights reserved. Alle Rechte vorbehalten. URL: http://www.dolphin-webdesign.de

*/


function zoom(objekt)
{
art=objekt+".html";
AktFenster=window.open(art,"Zoom","width=500,height=600,resizeable=no");
AktFenster.focus()
}

function clock()
{
	window.setTimeout("clock()",1000);
	today=new Date();
	self.status=today.toString();
}

function changer(number,objekt)
{
pfad=new Image();
pfad.src="Grafiken/"+objekt;
window.document.images[number].src=pfad.src;
}

function Hinweis()
{

document.open();

document.write('<HEAD><TITLE>Bestätigung</TITLE></HEAD>');
document.write('<BODY BGCOLOR="#DAEFDC" TEXT="#000000" LINK="#008000" VLINK="#008000">');
document.write('<FONT FACE="Arial" SIZE=2>');
document.write('<CENTER><br><br><br><br><br>Vielen Dank für Ihre email. Wir werden Ihnen so schnell wie möglich antworten.</CENTER>');
document.write('<FORM><CENTER><A HREF="eingang.html">Zurück zur Startseite</A></CENTER></FORM>');
document.write('</FONT></BODY></HTML>');

document.close();

}

// end -->