
function sizeContent(doc) {
	ctrl = doc.getElementById('content');
	if (ctrl.offsetWidth>800) { ctrl.style.width="800px"; } else { if (doc.body.offsetWidth<=870 && ctrl.style.width!="auto") { ctrl.style.width="auto"; } }
}
function RenderMail(user,domain,options,linktext,cssclass,enabled){var mailto=user+'@'+domain;var txt=linktext;if(txt.length<1){txt=mailto;}if(enabled){if(cssclass.length>0){document.write('<a class='+cssclass+' href=mailto:'+mailto+options+'>'+txt+'</a>');}else{document.write('<a href=mailto:'+mailto+options+'>'+txt+'</a>');}}else{if(cssclass.length>0){document.write('<span class='+cssclass+'>'+txt+'</span>');}else{document.write(txt);}}}
