/**********************************************************************************
*********************************************************************************/
function WriteHeader(Ueberschrift){
	MailUs = new Image();
	MailUs.src = "images\/logo\/mailus.gif";
	MailUsBW = new Image();
	MailUsBW.src = "images\/logo\/mailus_bw.gif";
	
	Print = new Image();
	Print.src = "images\/logo\/print.gif";
	PrintBW = new Image();
	PrintBW.src = "images\/logo\/print_bw.gif";

	Info = new Image();
	Info.src = "images\/logo\/info.gif";
	InfoColor = new Image();
	InfoColor.src = "images\/logo\/info_color.gif";

	document.write ("<table border='0' cellpadding='0' cellspacing='0' width='600px'><TR><TD>");

	if (Ueberschrift!=null){
		document.write ("<DIV ID='animation' STYLE='width: 100%' onmouseover='animation.style.filter=&quot;Shadow(color=#639CBD, direction=135)&quot;' onmouseout='animation.style.filter=&quot;&quot;'>");
		document.write ("<H1>" + Ueberschrift +"<H1><HR>");
		document.write ("</DIV>");
	}

}

function WriteFooter(){
	var jahr, monat, tag, AktuellesDatum;
	AktuellesDatum = new Date;

	jahr = AktuellesDatum.getYear();
	monat = AktuellesDatum.getMonth() + 1;
	tag = AktuellesDatum.getDate();

//	tag = tag - 10;
//	if (tag < 1)
//	{
//		tag = 1;
//		monat = monat - 1;
//	}
//
//	if (monat < 1)
//	{
//		monat = 12;
//		jahr = jahr - 1;
//	}
	
	
	document.write ("<p/><HR></TD></TR></TABLE>");
	document.write ("<table border='0' cellpadding='0' cellspacing='0' width='600'><TR>");
	document.write ("<TD><p class='normaltext'><font size='1'><a href='mailto:info@fks.at'>&copy; FKS INDUSTRIEB&Ouml;DEN &amp; HANDEL GmbH.</a></font></p></TD>");
	document.write ("<TD><p class='normaltext'><font size='1'>Stand: " + tag + "." + monat + "." + jahr + "</font></p></TD>");
	document.write ("<TD><a href='mailto:info@fks.at' OnMouseOver='Anim(&quot;idmailus&quot;, MailUs)' OnMouseOut='Anim(&quot;idmailus&quot;, MailUsBW)'><img src='images\/logo\/mailus_bw.gif' border='0' alt='E-Mail an FKS Industrieb&ouml;den und Handel GmbH.' NAME='idmailus'></a></TD>");	
	document.write ("<TD><a href='javascript:print(this)' OnMouseOver='Anim(&quot;idprint&quot;, Print)' OnMouseOut='Anim(&quot;idprint&quot;, PrintBW)'><img src='images\/logo\/print_bw.gif' alt='Diese Seite drucken' border='0' name='idprint'></a></TD>");
	document.write ("</TR></TABLE>");

}

function Anim(nameBild, strDateiname){
	if (document.images){
		document.images[nameBild].src = strDateiname.src
	}
}

function totop(){
	document.write ("<a href='#top'><img src='images\/logo\/totop3.gif' border='0' alt='nach oben...' align='right'></a>");
}

function writeInfo(){
	document.write ("<a href='kontakt.htm' OnMouseOver='Anim(&quot;idinfo&quot;, InfoColor)' OnMouseOut='Anim(&quot;idinfo&quot;, Info)'><img src='images\/logo\/info.gif' border='0' alt='Senden Sie mir weitere Infos zu...' NAME='idinfo'></a></p>");		
}

function preview(picname_small, picname_large, alttext){
	document.write ("<a href=javascript:view('" + picname_large + "')>");
	document.write ("<img src='" + picname_small + "' border='0' alt='" + alttext + "'\n\n(Klicken Sie auf das Bild f&uuml;r eine Vergr&ouml;sserung!)'>");
	document.write ("</a>");	
}

function view(picname)
//	bildvorschau in eigenem browser-fenster - browser passt sich dem bild an :-)

{
	var wwidth = 640
	var wheight = 480;
	var bigpicname = picname;
	ShowWindow = window.open('','','width='+wwidth+',height='+wheight+',resizable=yes');
	ShowWindow.moveTo((screen.width-wwidth)/2,(screen.height-wheight)/2);
	ShowWindow.document.open();
	ShowWindow.document.write("<html><head><title> - Klicken Sie auf das Bild um das Fenster zu schliessen</title></head><body leftmargin=0 topmargin=0 marginwidth=0 marginheight=0><a href='javascript:close()'><img src='"+ bigpicname +"' onload='window.resizeTo(this.width+12,this.height+31);window.moveTo((screen.width-this.width)/2,(screen.height-this.height)/2)' border='0'></a></body></html>");
	ShowWindow.document.close();
}
