//Alpacaworks javascripts
//by SSC Solutions (sscsolutions.com)


//============BEGIN GLOBAL VARIABLES============
//============END GLOBAL VARIABLES============

//============BEGIN CUSTOM FUNCTIONS============
//============END CUSTOM FUNCTIONS============


//============BEGIN PRE-FAB FUNCTIONS============

function JADmailTo(handle,domain,description)	{	// 'hides' email address from spambots.
	document.write('<a href=\"mailto:' + handle + '@' + domain + '\">');
	if (description) {	//optional description parameter displays description instead of address	
		document.write(description + '</a>');
		} 
	else	{
		document.write(handle + '@' + domain + '</a>');
		}
	}

