//<!--

//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.
	--------------------------------------------------------------*/
	function appendEmail(e,s,b) {
		if(e) {
			var e // email address
			var s // subject
			var b // body
			var goodAddress
				goodAddress = e.replace('NOSPAM','@'); // replaces NOSPAM 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;
			}
		}
		
//-->