// Copyright (C) 2004-2011 by Kostis Netzwerkberatung
// footer for http://www.kostis.[de|eu|it|net]/
// displays modification date in ISO 8601 format

	var	dateObj	= new Date(document.lastModified) ;
	var	month	= dateObj.getMonth() + 1 ;
	var	day	= dateObj.getDate() ;
	var	fyear	= dateObj.getFullYear() ;
	var	pday	= ((day < 10) ? "0" : "") + day;
	var	pmonth	= ((month < 10) ? "0" : "") + month ;

	document.write ("&copy; 2004-2011 by <strong><font color=\"#0000A0\">Kostis</font> <font color=\"#0000FF\">Netzwerkberatung</font></strong>. Last update: ") ;
	document.write (fyear + "-" + pmonth + "-" + pday + "<br>") ;
	document.write ("Konstantinos Kostis, Talstr. 25, D-63322 R&ouml;dermark, Germany, Tel. +49 6074 881056, +49 177 6713674<br>") ;
	document.write ("contact via this <a href=\"http://www.scriptforme.de/feedback/feedback-form.php?feedback=kostis\" target=\"_blank\">feedback form</a><br>\n") ;
	document.write ("Here is a great video on why <a href=\"http://www.youtube.com/watch?v=pQHX-SjgQvQ\" target=\"_blank\">introducing a new system</a> can be so hard.<br>") ;
	document.write ("<table border=\"1\">\n") ;
	document.write ("  <tr>\n") ;
	document.write ("    <td>\n") ;
	document.write ("      <a href=\"http://www.itil.co.uk/\" target=\"_blank\">\n") ;
	document.write ("        <img alt=\"ITIL-Logo\" src=\"/bitmap/ITIL-Logo.gif\" border=\"0\">\n") ;
	document.write ("      </a> certified<br>\n") ;
	document.write ("      ITIL Foundation<br>\n") ;
	document.write ("      ITIL Pracitioner SLM\n") ;
	document.write ("    </td>\n") ;
	document.write ("    <td>\n") ;
	document.write ("      <a href=\"http://www.ogc.gov.uk/methods_prince_2.asp\" target=\"_blank\">\n") ;
	document.write ("        <img alt=\"PRINCE2-Logo\" src=\"/bitmap/PRINCE2-Logo.jpg\" border=\"0\">\n") ;
	document.write ("      </a> certified<br>\n") ;
	document.write ("      PRINCE2 Foundation<br>\n") ;
	document.write ("      &nbsp;\n") ;
	document.write ("    </td>\n") ;
	document.write ("  </tr>\n") ;
	document.write ("</table>\n") ;

