/* Insert the email addresses - helps to stop bots from extracting the email address... */
function insertAddress()
{
	prefix = "enquiries";
	postfix = "catswhiskers.biz";
	embeddedCGI =  "?&amp;subject=Cats Whiskers Enquiry"
	embeddedCGI += "&amp;body=Please provide your name and contact details.";

	insertaddress = prefix+"@"+postfix;

	document.write("<a href=\"mailto:"+insertaddress+embeddedCGI+"\">"+insertaddress+"</a>");
}
