	var pCounter =0;

	function doNothing() {};

	function writePopup(text) {
		pCounter ++;
		document.write ('<div class=popup id=\"L'+pCounter+'\">');
		document.write ('	'+text);
		document.write ('</div>');
	}

	function writeLink(lText, lDesc) {
		// find a way to eliminate spaces from a javascript string!
		tmp = document.location.href;
		tmp2 = lText;
		tmp.toLowerCase;
		tmp2.toLowerCase;

		if (tmp.indexOf(tmp2) == -1 ) {

					writePopup(lDesc);

			document.write ('<a class=navlinkclass href=\"'+lText+'.htm\"');
			document.write ('		onMouseOver=\"{document.all.L'+pCounter+'.style.display=\'block\'}\"');
			document.write ('		 onMouseOut=\"{document.all.L'+pCounter+'.style.display=\'none\'}\">');
			document.write (lText);
			document.write ('</a><br>');

		} else {

					writePopup(lDesc);

			document.write ('<a class=activepagename href=\"'+lText+'.htm\"');
			document.write ('		onMouseOver=\"{document.all.L'+pCounter+'.style.display=\'block\'}\"');
			document.write ('		 onMouseOut=\"{document.all.L'+pCounter+'.style.display=\'none\'}\">');
			document.write (lText);					
  		document.write ('</a><br>');

		}
	}
	function addNavigationLinks() {
		writeLink('home',	' ');
		writeLink('huisvesting',	' ');
		writeLink('openingstijden',	' ');
		writeLink('prijzen',	' ');
		writeLink('wat neem je mee',	' ');
		writeLink('verplichte entingen',	' ');
		writeLink('fotos hond',	' ');
		writeLink('fotos kat',	' ');
		writeLink('route beschrijving',	' ');
	}

	function addSubPageLinks() {
		writeLink('Handleidingen',	'Ga naar de pagina handleidingen');
	}

	function link(destination, caption){
		document.write ('<a href=\"'+destination+'\"');
		document.write ('	onMouseOver=\"\"');
		document.write ('	 onMouseOut=\"\">');
		document.write (caption);
		document.write ('</a>')

	}

	function writeToday() {
		today = new Date();
		maand = new Array();
		dag = new Array();

		maand[0] = 'januari';
		maand[1] = 'februari';
		maand[2] = 'maart';
		maand[3] = 'april';
		maand[4] = 'mei';
		maand[5] = 'juni';
		maand[6] = 'juli';
		maand[7] = 'augustus';
		maand[8] = 'september';
		maand[9] = 'oktober';
		maand[10] = 'november';
		maand[11] = 'december';

		dag[0] = 'zondag';
		dag[1] = 'maandag';
		dag[2] = 'dinsdag';
		dag[3] = 'woensdag';
		dag[4] = 'donderdag';
		dag[5] = 'vrijdag';
		dag[6] = 'zaterdag';

		document.write (dag[today.getDay()] +" "+ today.getDate() +" "+maand[today.getMonth()]+" "+today.getYear());
	}

	function writeModified() {
		today = new Date(document.lastModified);
		maand = new Array();
		dag = new Array();

		maand[0] = 'januari';
		maand[1] = 'februari';
		maand[2] = 'maart';
		maand[3] = 'april';
		maand[4] = 'mei';
		maand[5] = 'juni';
		maand[6] = 'juli';
		maand[7] = 'augustus';
		maand[8] = 'september';
		maand[9] = 'oktober';
		maand[10] = 'november';
		maand[11] = 'december';

		dag[0] = 'zondag';
		dag[1] = 'maandag';
		dag[2] = 'dinsdag';
		dag[3] = 'woensdag';
		dag[4] = 'donderdag';
		dag[5] = 'vrijdag';
		dag[6] = 'zaterdag';

		document.write (dag[today.getDay()] +" "+ today.getDate() +" "+maand[today.getMonth()]+" 2007");
	}

	function writeLogo() {
		document.write ('<img src="../images/logo.gif"><br>');
		document.write ('<b>Dierenpension "Oud Dijk"</b>  &bull; Landeweer 1 &bull; 6942 NM Didam <br>');
		document.write ('Tel. 0316 22 45 01  &bull; Mobiel. 06 10 447 578');
	}

