/*  ----------------------------
	PEMAQUID COMMUNICATIONS, llc
	----------------------------
	http://www.pemaquid.com
	info@pemaquid.com
	207.221.2520
	Library of commonly used javascripts
	LAST UPDATE: 09/13/07
	----------------------------
*/	

// ====================================================================================================
 
	 
function writeAddr() {
	 // Build the address
	 var i,a=writeAddr.arguments,addr="";
	 addr += a[0]+"@";
	 for( i=1; i<a.length; i++ ) {
	 if( i>1 ) addr += ".";
	 addr += a[i];
	 }
	 // Write html to the browser with the email address
	 document.write("<a href=\"mailto:" + addr + "\" class=\"email\" ><strong>" + addr + "</strong></a>");
	 }

// ====================================================================================================