/*
SearchCounsel.com (RAMparts SEO ws18)
Email Feedback component JavaScript file
by Robin Macrae, October 2002
http://SearchCounsel.com
Copyright (c) 2002 Robin Macrae and Innisian Airware
All rights reserved
Based on Dan Benjamin's Hivelogic Email Address Encoder, 
http://www.hivelogic.com/safeaddress/

Revised 2002-08 log (ws18 d1)#02-10e-29_Dev01b_to_Current
*/

function feedbackEmail () {
	var first = 'ma';
	var second = 'il';
	var third = 'to:';
	var address = '&#102;&#101;&#101;&#100;&#98;&#97;&#99;&#107;';
	var domain = '&#115;&#101;&#97;&#114;&#99;&#104;&#99;&#111;&#117;&#110;&#115;&#101;&#108;&#46;&#99;&#111;&#109;';
	var subject = '?subject=Feedback from page: ';
	document.write('<a href="');
	document.write(first+second+third);
	document.write(address);
	document.write('&#64;');
	document.write(domain);
	document.write(subject);
	document.write(document.title);
	document.write('" title="Click to open a message in your email program. This page\'s title will be added to your email message\'s subject line.">');
	document.write('comments, questions and other feedback<\/a>');
}

function feedbackEmail2 () {
	var first = 'ma';
	var second = 'il';
	var third = 'to:';
	var address = '&#99;&#111;&#110;&#116;&#97;&#99;&#116;';
	var domain = '&#115;&#101;&#97;&#114;&#99;&#104;&#99;&#111;&#117;&#110;&#115;&#101;&#108;&#46;&#99;&#111;&#109;';
	var subject = '?subject=Contact Robin Macrae: ';
	document.write('<a href="');
	document.write(first+second+third);
	document.write(address);
	document.write('&#64;');
	document.write(domain);
	document.write(subject);
	document.write('" title="Click to open a message in your email program. This page\'s title will be added to your email message\'s subject line.">');
	document.write('Robin Macrae<\/a>');
}

/* end */
