function divout (str) {
	var obj = document.getElementById("divout");
	if (obj==null) {
		var o = document.createElement("div");
		o.setAttribute("id","divout");
		o.style.display="none";
		o.style.position="absolute";
		o.style.top="100px";
		o.style.left="1000px";
		o.style.width="500px";
		o.style.height="500px";
		o.style.borderWidth="1px";
		o.style.borderStyle="solid";
		o.style.borderColor="gray"; 
		o.style.overflowX="hidden";
		o.style.overflowY="scroll";
		o.style.fontSize="10pt";
		o.style.color="black";
		o.style.zIndex="999999";
		o.style.fontFamily="sans-serif";
		o.style.backgroundColor="silver";
		if (document.body) {
			if (document.forms && document.forms.length>0) {
				obj = document.forms[0].appendChild(o);
			} else {
				obj = document.body.appendChild(o);
			}
		}
	}
	if (obj) {
		if (obj.style.display=="none") obj.style.display = "";
		obj.innerHTML = obj.innerHTML + str + "<br>";
	}
}
function setLiamTo (thisObj) {
	if (thisObj.tagName && thisObj.tagName.toUpperCase()=="A") {
		if (thisObj.href && thisObj.href.length>0 && thisObj.href.charAt(thisObj.href.length-1)=="#") {
			var s1 = "m" + "a";
			var a1 = "@";
			var s3 = "t" + "o";
			var a2 = "info";
			var s2 = "i" + "l";
			var a3 = "farnwr.org";
			var s = s1+s2+s3+":"+a2+a1+a3;
			thisObj.href=s;
		}
	} 
}