function print_mail_to_link(lhs, rhs, subject, theclass, showtext, imagename)
{
	document.write("<A HREF=\"mailto");
	document.write(":" + lhs + "@");
	document.write(rhs);
	if(subject != '')
	{
		document.write("?Subject=" + subject);
	}
	document.write("\" class=\"" + theclass + "\">");
	if(imagename != '')
	{
		document.write("<img src=\"" + imagename + "\" border=\"0\"  />");
		document.write("<br />");
	}
	document.write(showtext);
	document.write("<\/a>");
}

function print_mail_to_link_with_image(lhs, rhs, subject, image_name, alt_tag)
{
	document.write("<A HREF=\"mailto");
	document.write(":" + lhs + "@");
	document.write(rhs);
	if(subject != '')
	{
		document.write("?Subject=" + subject);
	}
	document.write("\"><img src=\"" + image_name + "\" border=\"0\" alt=\"" + alt_tag + "\"><\/a>");
}
function print_news_mailto_1()
{
	document.write("<area shape=\"rect\" coords=\"321,287,544,314\" href=\"mailto:info");
	document.write("@");
	document.write("rspcanottingham.co.uk?Subject=Dog Walk 2007 Sponsor Pack\">");
}