<!--//  Break email address into into components

function sales_email(the_lhs, the_rhs, the_subject, the_class)
{
	document.write('<a href=\"mailto:');
	document.write(the_lhs + '@');
	document.write(the_rhs + '?Subject=' + the_subject + '\" onFocus=\"if(this.blur)this.blur()\" class=\"' + the_class + '\">');
	document.write(the_lhs + '@' + the_rhs);
	document.write('</a>');
}
// end hiding -->
