function fill() {
  fill_header();
  fill_sidebar();
  fill_footer();
}

function fill_header() {
	s  = '<h1><a href="http://vanbrug.org">Herco&nbsp;van&nbsp;Brug</a></h1>';
	s += '<p class="NextPage"><a href="#">></a></p>';
	s += '<ul>';
	s += '<li><a href="index.html">Home</a></li>';
	s += '<li><a href="projects.html">Projects</a></li>';
	s += '<li><a href="aboutme.html">About Me</a></li>';
	s += '<li><a href="sitemap.html">Sitemap</a></li>';
	s += '<li><a href="mailto:herco&#64;vanbrug.org?Subject=Website Comments">Contact me</a></li>';
	s += '</ul>';
	document.getElementById("HEADER").innerHTML = s;
}

function fill_sidebar() {
	s  = '<h1>Stuff</h1>';
	s += '<p class="Date">Projects</p>';
	s += '<p>This page shows some of the many projects I worked on like X-mono, RSync Backup for Windows, Website Menus, a Linux Media Center, etc.</p>';
	s += '<p class="More"><a href="projects.html">Read More</a></p>';

	s += '<p class="Date">Torrent collective Searcher</p>';
	s += '<p>To search through 10 torrentsites for the one with the best stats can be a pain. Here\'s a page that does the work for you and asks them all at once.</p>';
	s += '<p class="More"><a href="torrents.html">Search Torrents</a></p>';

	s += '<h1>LINKS</h1>';
	s += '<a href=\'http://bf2s.com/compare/44564830,58938282,43501609,43674045,43528786,87171053,95758851,65316091,129152954\'>Brutal CLAN</a><br>';
	s += '<a href=\'http://bf2s.com/my-leaderboard.php?pids=44564830%2C58938282%2C43501609%2C43674045%2C43528786%2C87171053%2C95758851%2C65316091%2C129152954&get=Get+Leader+Board\'>Brutal Leaderboard</a><br>';
	s += '<p><a href="http://vanbrug.org">http://vanbrug.org</a></p>';
	s += '<p><a href="http://www4.clustrmaps.com/counter/maps.php?url=http://www.xs4all.nl/~brugh" id="clustrMapsLink"><img src="http://www4.clustrmaps.com/counter/index2.php?url=http://www.xs4all.nl/~brugh" style="border:0px;" alt="Locations of visitors to this page" title="Locations of visitors to this page" id="clustrMapsImg" onerror="this.onerror=null; this.src=http://www2.clustrmaps.com/images/clustrmaps-back-soon.jpg; document.getElementById(\\"clustrMapsLink\\").href=\\"http://www2.clustrmaps.com\\";" /></a></p>';
	document.getElementById("SIDEBAR").innerHTML = s;
}

function fill_footer() {
	s  = '\
<script type="text/javascript"><!--\
google_ad_client = "pub-4697208242502400";\
/* 728x90, gemaakt 28-1-09 */\
google_ad_slot = "1693923291";\
google_ad_width = 728;\
google_ad_height = 90;\
//-->\
</script>\
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>';
	s += '<ul>';
	s += '<li><a href="index.html" class="First">Home</a> |</li>';
	s += '<li><a href="projects.html">Projects</a> |</li>';
	s += '<li><a href="aboutme.html">About</a> |</li>';
	s += '<li><a href="mailto:herco&#64;vanbrug.org?Subject=Website Comments">Contact</a> |</li>';
	s += '<li><a href="sitemap.html">Sitemap</a></li>';
	s += '</ul>';
	s += '<p>&copy; 2006 BrugH. All rights reserved. <IMG SRC="http://www.xs4all.nl/cgi-bin/usercounter"></p>';
	document.getElementById("FOOTER").innerHTML = s;
}

