Source = "http://www.hfsinchaos.com/images/ChaosIconWM.gif";
Link = "http://www.hfsinchaos.com";
Border = 0;
Alt = "The HFS In Chaos Project";
Width = 60;
Height = 60;
Left = 5;
Top = 5;

if(document.all) { 
	document.write("<SPAN ID=\"Watermark\" STYLE=\"position: absolute;\"><A HREF=\"" 
		+ Link + "\" TARGET=\"_top\"><IMG SRC=\"" + Source + "\" WIDTH=\"" + Width + 
		"\" HEIGHT=\"" + Height + "\" BORDER=\"" + Border + "\" ALT=\"" + Alt 
		+ "\"></A></SPAN>");
	WmUpdate();
	}
if(document.layers) {
	document.write("<LAYER ID=\"Watermark\" zIndex=\"1000\"><A HREF=\"" + Link + 
		"\" TARGET=\"_top\"><IMG SRC=\"" + Source + "\" WIDTH=\"" + Width + 
		"\" HEIGHT=\"" + Height + "\" BORDER=\"" + Border + "\" ALT=\"" + Alt + 
		"\"></A></LAYER>"); 
	WmUpdate();
	}
function WmUpdate() { 
	if(document.all) {
		Watermark.style.pixelLeft = (document.body.scrollLeft + document.body.clientWidth) - (Width + Left);
		Watermark.style.pixelTop = (document.body.scrollTop + document.body.clientHeight) - (Height + Top);
	} 
	if(document.layers) { 
		document.Watermark.left = (window.pageXOffset + window.innerWidth) - (Width + Left + 16);
		document.Watermark.top = (window.pageYOffset + window.innerHeight) - (Height + Top + 16);
	} 
	setTimeout("WmUpdate()",5);
}

