//this script writes the mailto email in the foot to prevent spam bots (ones without js interpreters)

function writefooteremail(){
	var myaddress = "info@pinnacleitforce.com";
	var myimg = '<img src="images/emailaddr.gif" class="emailaddr" alt="email" />';
	document.write('<a href="mailto:' + myaddress + '" class="copyright">' + myimg + '</a>');
}

function writecontactemail(){
	var myaddress = "info@pinnacleitforce.com";
	var myimg = '<img src="images/emailaddr2.gif" class="emailaddr" alt="email" />';
	document.write('<a href="mailto:' + myaddress + '" class="copyright">' + myimg + '</a>');
}