// Kris, 2/9 2008:
// Lappeløsning. I stedet for at kopiere hele PHP-lortet fra billedfilen herind,
// udskriver jeg bare in instans af billedet. Dette er alligevel kun nødvendigt
// fordi Zahid ikke kan få sat et img-tag ind i XSLT'en på uE.
(function() {
	this.site = 4;
	this.path = 'http://www.odsgard.dk/logall/logimg.php?site=' + this.site;
	this.inject = function() {
		var body = document.getElementsByTagName("body").item(0);
		var el = document.createElement('IMG');
		el.setAttribute('src', this.path);
		el.style.position = 'absolute';
		if (body)
			body.appendChild(el);
	}
	this.inject();
})();