// JavaScript Document: DATE and HOME

var showdate	= "yes"		// SHOW THE DATE ON THE PAGE
var showhome	= "yes"		// SHOW DATE
var dateLR		= "left"	// DATE LEFT OR RIGHT
var dateX		= "10"		// DATE X LOCATION
var dateY		= "152"		// DATE Y LOCATION

var homeX		= "10"
var homeY		= "170"
var homeLR		= "left"

// START DATE SCRIPT

if (showdate == "yes") {

document.write('<div id="date-location" style="'+dateLR+': '+dateX+'px; POSITION: absolute; TOP: '+dateY+'px">');
var d=new Date()
var weekday=new Array("Sonntag","Montag","Dienstag","Mittwoch","Donnerstag","Freitag","Samstag")
var monthname=new Array("Januar","Februar","März","April","Mai","Juni","Juli","August","September","Oktober","November","Dezember")
document.write("<span class=\"date-font\"><nobr>" + weekday[d.getDay()] + ", ")
document.write(d.getDate() + ". ")
document.write(monthname[d.getMonth()] + " ")
document.write(d.getFullYear())
document.write("</nobr><br></span>")
document.write('</div>');

}

// HOME

if (showhome == "yes") {
document.write('<div id="home" style="'+homeLR+': '+homeX+'px; POSITION: absolute; TOP: '+homeY+'px; width: auto; z-index: 1;">')
document.write('<a href="index.html" target="_self" class="homelink">Home</a>')
document.write('</div>')

}
//END HOME

// -- END -->
