// JavaScript Document

/*  ----------------------------------------------------------------
	New Window
	--------------------------------------------------------------*/
	/*function openWebrater(url) {
		window.open(url,'','top=30px,left=30px,width=640px,height=540px,menubar=yes,location=yes,scrollbars=yes,resizable=yes,toolbar=yes');
		} 
		*/
/*  ----------------------------------------------------------------
	Prevents spiders from spamming email address.
	--------------------------------------------------------------*/
	function appendEmail(e,s,b) {
		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;
			}
		} 
/*  ----------------------------------------------------------------
	Footer Copyright Date
	--------------------------------------------------------------*/
		var copyright = new Date();
		var date = copyright.getDate();
		var year = copyright.getYear();
		//Y2K Fix
		if (year < 2000) year = year + 1900;


