// JavaScript Document


	/*  ----------------------------------------------------------------
		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;
				}
			}

	/*  ----------------------------------------------------------------
		Copyright date.
		--------------------------------------------------------------*/
		var copyright = new Date();
		var date = copyright.getDate();
		var year = copyright.getYear();
		//Y2K Fix
		if (year < 2000) year = year + 1900;


	/*  ----------------------------------------------------------------
		Open browser windows.
		--------------------------------------------------------------*/
		/* This is specifically for Auto Desk */
		function openAutodesk() {
			var win
			win=window.open('http://www.autodesk.com','autodesk','toolbar=yes,location=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,top=25,left=25,width=800,height=600');
			win.focus();
			}
		function openAdobe() {
			var win
			win=window.open('http://www.adobe.com/products/acrobat/readstep2.html','adobe','toolbar=yes,location=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,top=25,left=25,width=800,height=600');
			win.focus();
			}

