
// ============================================================================================
	// GENERAL USE SCRIPTS...

	// create 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.
	// use: appendEmail('rantermanSYMBOLgmailDOTcom','noSubject','noBody')
		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;
				}
			}
			
		


