//<!--

//COPYRIGHT DATE
var copyright = new Date();
var date = copyright.getDate();
var year = copyright.getYear();
//Y2K Fix
if (year < 2000) year = year + 1900;


/*  ----------------------------------------------------------------
	Prevents spiders from spamming email address.
	<a href="#" onclick="appendEmail('abcSYMBOLabcDOTcom','noSubject','noBody'); return false;">email</a>
	--------------------------------------------------------------*/
		function appendEmail(e,s,b) {
			if(e) {
				var e // unreal address
				var s // subject
				var b // body
				var dot
				var dot = e.replace('SYMBOL','@'); // replaces SYMBOL with @
				var goodAddress
					goodAddress = dot.replace('DOT','.'); // replaces DOT with .
				if (s == 'noSubject' && b == 'noBody') {
					document.location.href = 'mailto:' + goodAddress;
					} else if (s != 'noSubject' && b == 'noBody') {
						document.location.href = 'mailto:' + goodAddress + '?subject=' + s;
					} else if (s == 'noSubject' && b != 'noBody') {
						document.location.href = 'mailto:' + goodAddress + '?body=' + b;
					} else {
						document.location.href = 'mailto:' + goodAddress + '?subject=' + s + '&body=' + b;
					}
				return false;
				}
			}
		
//-->
