function screenml(pExt, pName, pDomain, pDisplay, pClass){
	//function to hide email addresses from Spambots.
	//first 3 parameters must be sent to the function
	//last 2 parameters must be sent as "" if they aren't relevant
	//pExt = domain extension, e.g. "com"
	//pName = email name, e.g. "webmaster"
	//pDomain = web domain, e.g. "msn"
	//pDisplay = display name for mailto link, e.g. "contact us".  If "", the concatonated email address will be used
	//pClass = any class definition you would like to assign to the email link.
	vEmail = pName + "&#064;" + pDomain + "." + pExt; //this is the concatonated email address
	vHREF = "<a ";
	if (pClass!="") vHREF += "class='"+pClass + "' ";
	vHREF += "href='mail" + "to:" + vEmail + "'>";
	if (pDisplay!="") vHREF += pDisplay
	else vHREF += vEmail;
	vHREF += "</a>";
	return (vHREF);
}

function init(){
	var vBody = document.documentElement ? document.documentElement:document.body;
	document.getElementById("colRight").style.height=vBody.scrollHeight + "px";
}
