var emailName = "ardenwood";
var emailDomain = "earthlink.net";

// ULTIMATE CLIENT-SIDE JAVASCRIPT CLIENT SNIFF. VERSION 4.01
// BASED UPON: ULTIMATE CLIENT-SIDE JAVASCRIPT CLIENT SNIFF. VERSION 3.03
// © NETSCAPE COMMUNICATIONS 1999-2001. PERMISSION GRANTED TO REUSE AND DISTRIBUTE
// REVISED 17 May 99 to add is.nav5up and is.ie5up (see below).
// REVISED 21 Nov 00 to add is.gecko and is.ie5_5 Also Changed is.nav5 and is.nav5up to is.nav6 and is.nav6up
// REVISED 22 Feb 01 to correct Javascript Detection for IE 5.x, Opera 4, 
//						correct Opera 5 detection
//						add support for winME and win2k
//						synch with browser-type-oo.js
//						add is.aol5, is.aol6
// REVISED 26 Mar 01 to correct Opera detection
// REVISED 02 Oct 01 to add IE6 detection
// REVISED 08 Oct 02 by Tim Dobbelaere (http://tim.dobbelaere.com)
//						to add WinXP (is.winxp), Windows.NET (is.windotnet)
//						correct Mozilla & Netscape browser/engine distiction <<< use engine detection!
//						Mozilla engine: is.moz, is.moz2, is.moz2up, is.moz3, is.moz3up, is.moz4, is.moz4up, is.moz5, is.moz5up
//						Mozilla browser: is.mozilla, is.mozilla1
//						correct is.nav6 and is.nav6up, add is.nav7, is.aol7, is.aol8, is.opera6, is.opera6up
//						add is.macos, is.macos8, is.macos9, is.macosx
// REVISED 10 Oct 02 to add win2k detecion in Opera
// REVISED 05 Apr 04 to add win2k3 (is.win2k3, obsolete: is.windotnet), .NET CLR (is.dotnet)

// EVERYTHING YOU ALWAYS WANTED TO KNOW ABOUT YOUR JAVASCRIPT CLIENT BUT WERE AFRAID TO ASK...
// "Is" IS THE CONSTRUCTOR FUNCTION FOR "is" OBJECT, WHICH HAS PROPERTIES INDICATING:
// (1) BROWSER VENDOR:
//		is.nav, is.ie, is.opera, is.hotjava, is.webtv, is.tvnavigator, is.aoltv
// (2) BROWSER VERSION NUMBER:
//		is.major (integer indicating major version number: 2, 3, 4 ...)
//		is.minor (float   indicating full  version number: 2.02, 3.01, 4.04 ...)
// (3) MOZILLA ENGINE GENERATION
//		is.moz2, is.moz2up, is.moz3, is.moz3up, is.moz4, is.moz4up, is.moz5, is.moz5up, is.gecko
// (4) BROWSER VENDOR AND MAJOR VERSION NUMBER
//		is.nav2, is.nav3, is.nav4, is.nav4up, is.nav6, is.nav6up, is.nav7, is.nav7up
//		is.mozilla1
//		is.ie3, is.ie4, is.ie4up, is.ie5, is.ie5up, is.ie5_5, is.ie5_5up, is.ie6, is.ie6up, is.ie7, is.ie7up,
//		is.hotjava3, is.hotjava3up, is.opera2, is.opera3, is.opera4, is.opera5, is.opera5up, is.opera6, is.opera6up
//		is.aol3, is.aol4, is.aol5, is.aol6, is.aol7, is.aol8
// (5) JAVASCRIPT VERSION NUMBER:
//		is.js (float indicating full javascript version number: 1, 1.1, 1.2 ...)
// (6) OS PLATFORM AND VERSION:
//		is.win, is.win16, is.win32, is.win31, is.win95, is.winnt, is.win98, is.winme, is.win2k, is.winxp, is.win2k3
//		is.os2
//		is.mac, is.mac68k, is.macppc
//		is.unix
//		is.sun, is.sun4, is.sun5, is.suni86
//		is.irix, is.irix5, is.irix6
//		is.hpux, is.hpux9, is.hpux10
//		is.aix, is.aix1, is.aix2, is.aix3, is.aix4
//		is.linux, is.sco, is.unixware, is.mpras, is.reliant
//		is.dec, is.sinix, is.freebsd, is.bsd
//		is.vms
//
// See http://www.it97.de/javascript/js_tutorial/bstat/navobj.html and http://www.it97.de/javascript/js_tutorial/bstat/browseraol.html
// for detailed lists of useragent strings.
//
// NOTE: YOU DON'T WANT YOUR nav4 OR ie4 CODE TO "TURN OFF" OR
// STOP WORKING WHEN nav5 AND ie5 (OR LATER) ARE RELEASED, SO
// IN CONDITIONAL CODE FORKS, USE is.nav4up ("Nav4 OR GREATER")
// AND is.ie4up ("ie4 OR GREATER") INSTEAD OF is.nav4 OR is.ie4
// TO CHECK VERSION IN CODE WHICH YOU WANT TO WORK ON FUTURE
// VERSIONS.

function Is () {
		// CONVERT ALL CHARACTERS TO LOWERCASE TO SIMPLIFY TESTING
	var agt = navigator.userAgent.toLowerCase();

		// *** BROWSER VERSION ***
		// NOTE: ON IE5, THESE RETURN 4, SO USE is.ie5up TO DETECT IE5 OR is.ie6up TO DETECT IE6
	this.major = parseInt(navigator.appVersion);
	this.minor = parseFloat(navigator.appVersion);

		// NOTE: OPERA AND WEBTV SPOOF NAVIGATOR. WE DO STRICT CLIENT DETECTION. IF YOU WANT TO ALLOW SPOOFING, TAKE OUT THE TESTS FOR OPERA AND WEBTV
	this.moz = ((agt.indexOf('mozilla') != -1) && (agt.indexOf('spoofer')==-1) && (agt.indexOf('compatible') == -1) && (agt.indexOf('opera')==-1) && (agt.indexOf('webtv')==-1) && (agt.indexOf('hotjava')==-1));
    this.moz2 = (this.moz && (this.major == 2));
    this.moz3 = (this.moz && (this.major == 3));
    this.moz4 = (this.moz && (this.major == 4));
    this.moz4up = (this.moz && (this.major >= 4));
    this.moz5 = (this.moz && (this.major == 5));
    this.moz5up = (this.moz && (this.major >= 5));
    this.gecko = (agt.indexOf('gecko') != -1);

    this.firefox = (agt.indexOf('firefox') != -1);
    this.firefox1 = (agt.indexOf('firefox/1.0') != -1);
    this.firefox1up = (this.firefox && !this.firefox1);
	this.firefox1_5 = (agt.indexOf('firefox/1.5') != -1);
	this.firefox1_5up = (this.firefox1up && !this.firefox1_5);
	this.firefox2 = (agt.indexOf('firefox/2.') != -1);
	this.firefox2up = (this.firefox1_5up && !this.firefox2);

	this.seamonkey = (agt.indexOf('seamonkey') != -1);
	this.seamonkey1 = (agt.indexOf('seamonkey/1') != -1);
	this.seamonkey2 = (agt.indexOf('seamonkey/2') != -1);

    this.nav2 = this.moz2;
    this.nav3 = this.moz3;
    this.nav4 = this.moz4;
    this.nav4up = (this.nav4 || ((this.major >= 4) && (agt.indexOf("netscape") != -1)));
    this.nav = (this.nav2 || this.nav3 || this.nav4);
    this.nav6 = (this.moz && (this.major == 5) && (agt.indexOf("netscape6/6") != -1));
    this.nav6up = (this.moz && (this.major >= 5) && (agt.indexOf("netscape") != -1));
    this.nav7 = (this.moz && (this.major == 5) && (agt.indexOf("netscape/7") != -1));
    this.nav7up = (this.nav6up && !this.nav6);
    this.nav8 = (this.moz && (this.major == 5) && (agt.indexOf("netscape/8") != -1));
    this.nav8up = (this.nav7up && !this.nav7);
    this.navonly = (this.nav && ((agt.indexOf(";nav") != -1) || (agt.indexOf("; nav") != -1)) );

    this.mozilla = (this.moz && this.gecko);
    this.mozilla1 = (this.moz && this.gecko && (agt.indexOf("rv:1") != -1));

    this.ie = ((agt.indexOf("msie") != -1) && (agt.indexOf("opera") == -1));
    this.ie3 = (this.ie && (this.major < 4));
    this.ie4 = (this.ie && (this.major == 4) && (agt.indexOf("msie 4") != -1) );
    this.ie4up = (this.ie && (this.major >= 4));
    this.ie5 = (this.ie && (this.major == 4) && (agt.indexOf("msie 5.0") != -1) );
    this.ie5up = (this.ie4up && !this.ie4);
    this.ie5_5 = (this.ie && (this.major == 4) && (agt.indexOf("msie 5.5") != -1));
    this.ie5_5up = (this.ie5up && !this.ie5);
    this.ie6 = (this.ie && (this.major == 4) && (agt.indexOf("msie 6.") != -1) );
    this.ie6up = (this.ie5_5up && !this.ie5_5);
    this.ie7 = (this.ie && (this.major == 4) && (agt.indexOf("msie 7.") != -1) );
    this.ie7up = (this.ie6up && !this.ie6);

    this.msn = (this.ie4up && (agt.indexOf("msn") != -1));
    this.msn2_5 = (this.msn && (agt.indexOf("msn 2.5") != -1));
    this.msn2_6 = (this.msn && (agt.indexOf("msn 2.6") != -1));

    this.aol = (agt.indexOf("aol") != -1);
    this.aol3 = (this.aol && this.ie3);
    this.aol4ie3 = (this.aol && this.ie3);
    this.aol4ie4 = (this.aol && this.ie4);
    this.aol4 = (this.aol4ie3 || this.aol4ie4);
    this.aol5 = (agt.indexOf("aol 5") != -1);
    this.aol6 = (agt.indexOf("aol 6") != -1);
    this.aol7 = ((agt.indexOf("aol 7") != -1) || agt.indexOf("aol/7") != -1);
    this.aol8 = ((agt.indexOf("aol 8") != -1) || agt.indexOf("aol/8") != -1);
    this.aol9 = ((agt.indexOf("aol 9") != -1) || agt.indexOf("aol/9") != -1);

    this.opera = (agt.indexOf("opera") != -1);
    this.opera2 = (agt.indexOf("opera 2") != -1 || agt.indexOf("opera/2") != -1);
    this.opera3 = (agt.indexOf("opera 3") != -1 || agt.indexOf("opera/3") != -1);
    this.opera4 = (agt.indexOf("opera 4") != -1 || agt.indexOf("opera/4") != -1);
    this.opera5 = (agt.indexOf("opera 5") != -1 || agt.indexOf("opera/5") != -1);
    this.opera5up = (this.opera && !this.opera2 && !this.opera3 && !this.opera4);
    this.opera6 = (agt.indexOf("opera 6") != -1 || agt.indexOf("opera/6") != -1);
    this.opera6up = (this.opera5up && !this.opera5);
	this.opera7 = (agt.indexOf("opera 7") != -1 || agt.indexOf("opera/7") != -1);
    this.opera7up = (this.opera6up && !this.opera6);
    this.opera8 = (agt.indexOf("opera 8.0") != -1 || agt.indexOf("opera/8.0") != -1);
    this.opera8up = (this.opera7up && !this.opera7);
    this.opera8_5 = (agt.indexOf("opera 8.5") != -1 || agt.indexOf("opera/8.5") != -1);
    this.opera8_5up = (this.opera8up && !this.opera8);
    this.opera9 = (agt.indexOf("opera 9") != -1 || agt.indexOf("opera/9") != -1);
    this.opera9up = (this.opera8_5up && !this.opera8_5);

    this.webtv = (agt.indexOf("webtv") != -1); 

    this.TVNavigator = ((agt.indexOf("navio") != -1) || (agt.indexOf("navio_aoltv") != -1)); 
    this.AOLTV = this.TVNavigator;

    this.hotjava = (agt.indexOf("hotjava") != -1);
    this.hotjava3 = (this.hotjava && (this.major == 3));
    this.hotjava3up = (this.hotjava && (this.major >= 3));
    
	this.konqueror = (agt.indexOf("konqueror") != -1);
	this.safari = ((agt.indexOf('safari')!=-1) && (agt.indexOf('mac')!=-1));
    this.khtml  = (this.safari || this.konqueror);
	
	function jsVersion() {
		document.write('<script language="JavaScript1.0"> var jsVer=1.0; </script>');
		document.write('<script language="JavaScript1.1"> var jsVer=1.1; </script>');
		document.write('<script language="JavaScript1.2"> var jsVer=1.2; </script>');
		document.write('<script language="JavaScript1.3"> var jsVer=1.3; </script>');
		document.write('<script language="JavaScript1.4"> var jsVer=1.4; </script>');
		document.write('<script language="JavaScript1.5"> var jsVer=1.5; </script>');
		document.write('<script language="JavaScript2.0"> var jsVer=2.0; </script>');
		return jsVer;
	}
	this.js = jsVersion();

    // *** PLATFORM ***
    this.win   = ( (agt.indexOf("win") != -1) || (agt.indexOf("16bit") != -1) );
    // NOTE: On Opera 3.0, the userAgent string includes "Windows 95/NT4" on all
    //        Win32, so you can't distinguish between Win95 and WinNT.
    this.win95 = ((agt.indexOf("win95") != -1) || (agt.indexOf("windows 95") != -1));

    // is this a 16 bit compiled version?
    this.win16 = ((agt.indexOf("win16") != -1) || 
               (agt.indexOf("16bit") != -1) || (agt.indexOf("windows 3.1") != -1) || 
               (agt.indexOf("windows 16-bit") != -1) );  

    this.win31 = ((agt.indexOf("windows 3.1") != -1) || (agt.indexOf("win16") != -1) ||
                    (agt.indexOf("windows 16-bit") != -1));

    // NOTE: Reliable detection of Win98 may not be possible. It appears that:
    //       - On Nav 4.x and before you'll get plain "Windows" in userAgent.
    //       - On Mercury client, the 32-bit version will return "Win98", but
    //         the 16-bit version running on Win98 will still return "Win95".
    this.win98 = ((agt.indexOf("win98") != -1) || (agt.indexOf("windows 98") != -1));
    this.winnt = ((agt.indexOf("winnt") != -1) || (agt.indexOf("windows nt") != -1));
    this.win32 = (this.win95 || this.winnt || this.win98 || 
                    ((this.major >= 4) && (navigator.platform == "Win32")) ||
                    (agt.indexOf("win32") != -1) || (agt.indexOf("32bit") != -1));

    this.winme = ((agt.indexOf("win 9x 4.90") != -1));
    this.win2k = ((agt.indexOf("windows nt 5.0") != -1) || (agt.indexOf("windows 2000") != -1));
    this.winxp = ((agt.indexOf("windows nt 5.1") != -1) || (agt.indexOf("windows xp") != -1));
    this.win2k3 = ((agt.indexOf("windows nt 5.2")!= -1) || (agt.indexOf("windows 2003") != -1));

	this.dotnet = ((agt.indexOf(".net clr") != -1));
	this.dotnet1 = ((agt.indexOf(".net clr") != -1) && (agt.indexOf(".net clr 1.0.3705") != -1));
	this.dotnet1_1 = ((agt.indexOf(".net clr") != -1) && (agt.indexOf(".net clr 1.1.4322") != -1));
	this.dotnet2 = ((agt.indexOf(".net clr") != -1) && (agt.indexOf(".net clr 2.0.50727") != -1));

    this.os2   = ((agt.indexOf("os/2") != -1) || 
                    (navigator.appVersion.indexOf("OS/2") != -1) ||   
                    (agt.indexOf("ibm-webexplorer") != -1));

    this.mac68k = ((agt.indexOf("68k") != -1) || (agt.indexOf("68000") != -1));
    this.macppc = ((agt.indexOf("ppc") != -1) || (agt.indexOf("powerpc") != -1));
    this.mac    = (this.mac68k || this.macppc || (agt.indexOf("mac") != -1));
    // hack ie5 js version for mac
    if (this.mac && this.ie5up) this.js = 1.4;
    // macos detection not a exact science, too little info in ua
    this.macos  = (this.mac && ((agt.indexOf("mac os") != -1) || (agt.indexOf("macos") != -1) || this.ie));
    this.macos8 = (this.macos && ((agt.indexOf("os 8") != -1) || (agt.indexOf("os8") != -1)));
    // ie5.13 reports as ie5.12 on os x
    this.macos9 = ((this.mac && (this.ie5 && (agt.indexOf("msie 5.13") != -1))) || (this.macos && ((agt.indexOf("os 9") != -1) || (agt.indexOf("os9") != -1))));
    this.macosx = (this.macos && ((agt.indexOf("os x") != -1) || (agt.indexOf("osx") != -1)));
	this.macosxintel = (this.macosx && (agt.indexOf("intel") != -1));
    this.sun   = (agt.indexOf("sunos")!=-1);
    this.sun4  = (agt.indexOf("sunos 4")!=-1);
    this.sun5  = (agt.indexOf("sunos 5")!=-1);
    this.suni86= (this.sun && (agt.indexOf("i86")!=-1));
    this.irix  = (agt.indexOf("irix") !=-1);    // SGI
    this.irix5 = (agt.indexOf("irix 5") !=-1);
    this.irix6 = ((agt.indexOf("irix 6") !=-1) || (agt.indexOf("irix6") !=-1));
    this.hpux  = (agt.indexOf("hp-ux")!=-1);
    this.hpux9 = (this.hpux && (agt.indexOf("09.")!=-1));
    this.hpux10= (this.hpux && (agt.indexOf("10.")!=-1));
    this.aix   = (agt.indexOf("aix") !=-1);      // IBM
    this.aix1  = (agt.indexOf("aix 1") !=-1);    
    this.aix2  = (agt.indexOf("aix 2") !=-1);    
    this.aix3  = (agt.indexOf("aix 3") !=-1);    
    this.aix4  = (agt.indexOf("aix 4") !=-1);    
    this.linux = (agt.indexOf("inux")!=-1);
    this.sco   = (agt.indexOf("sco")!=-1) || (agt.indexOf("unix_sv")!=-1);
    this.unixware = (agt.indexOf("unix_system_v")!=-1); 
    this.mpras    = (agt.indexOf("ncr")!=-1); 
    this.reliant  = (agt.indexOf("reliantunix")!=-1);
    this.dec   = ((agt.indexOf("dec")!=-1) || (agt.indexOf("osf1")!=-1) || (agt.indexOf("dec_alpha")!=-1) || (agt.indexOf("alphaserver")!=-1) || (agt.indexOf("ultrix")!=-1) || (agt.indexOf("alphastation")!=-1)); 
    this.sinix = (agt.indexOf("sinix")!=-1);
    this.freebsd = (agt.indexOf("freebsd")!=-1);
    this.bsd = (agt.indexOf("bsd")!=-1);
    this.unix  = ((agt.indexOf("x11")!=-1) || this.sun || this.irix || this.hpux || this.sco ||this.unixware || this.mpras || this.reliant || this.dec || this.sinix || this.aix || this.linux || this.bsd || this.freebsd || this.macosx);
    this.vms   = ((agt.indexOf("vax")!=-1) || (agt.indexOf("openvms")!=-1));
		// PLUGINS BIT
	this.cookies = (navigator.cookieEnabled) ? true : false;
	if (typeof navigator.cookieEnabled == "undefined" && !this.cookies) {
		document.cookie = "testcookie";
		this.cookies = (document.cookie.indexOf("testcookie")!=-1) ? true : false;
	}
		// JAVA
	this.plugin_java = navigator.javaEnabled() ? true : false;
	if (navigator.javaEnabled() && typeof java != 'undefined') {
		this.plugin_java_ver = parseFloat(java.lang.System.getProperty("java.version").split('_')[0]);
		this.plugin_java_ver = Math.round(this.plugin_java_ver*10)/10;
	} else {
		this.plugin_java_ver = 'unknown';
	}
	if (this.ie && this.win) {
			// DETECT USING IE WAY
			// CHECK FOR ACROBAT
		this.plugin_acrobat_ver = 0;
		if (detectIE("PDF.PdfCtrl.4")) this.plugin_acrobat_ver = 4;
		if (detectIE("PDF.PdfCtrl.5")) this.plugin_acrobat_ver = 5;
		if (detectIE("PDF.PdfCtrl.6")) this.plugin_acrobat_ver = 6;
		if (detectIE("AcroPDF.PDF.1")) this.plugin_acrobat_ver = 7;
		this.plugin_acrobat = (this.plugin_acrobat_ver > 0);
			// CHECK FOR FLASH
		this.plugin_flash_ver = 0;
		if (detectIE("ShockwaveFlash.ShockwaveFlash.1")) this.plugin_flash_ver = 1;
			// THERE IS NO ShockwaveFlash.ShockwaveFlash.2
		if (detectIE("ShockwaveFlash.ShockwaveFlash.3")) this.plugin_flash_ver = 3;
		if (detectIE("ShockwaveFlash.ShockwaveFlash.4")) this.plugin_flash_ver = 4;
		if (detectIE("ShockwaveFlash.ShockwaveFlash.5")) this.plugin_flash_ver = 5;
		if (detectIE("ShockwaveFlash.ShockwaveFlash.6")) this.plugin_flash_ver = 6;
		if (detectIE("ShockwaveFlash.ShockwaveFlash.7")) this.plugin_flash_ver = 7;
		if (detectIE("ShockwaveFlash.ShockwaveFlash.8")) this.plugin_flash_ver = 8;
		this.plugin_flash = (this.plugin_flash_ver > 0);
			// CHECK FOR QUICKTIME
		try {
			oQTime=new ActiveXObject('QuickTimeCheckObject.QuickTimeCheck.1');
			if (oQTime) {
				this.plugin_quicktime = oQTime.IsQuickTimeAvailable(0);
				this.plugin_quicktime_ver = parseInt(oQTime.QuickTimeVersion.toString(16).substring(0,3))/100;
			}
		}
		catch(e) {
			this.plugin_quicktime = false;
			this.plugin_quicktime_ver = 0;
		}
			// CHECK FOR SHOCKWAVE
		this.plugin_shockwave_ver = 0;
		if (detectIE("SWCtl.SWCtl.1")) this.plugin_shockwave_ver = 6;
		if (detectIE("SWCtl.SWCtl.7")) this.plugin_shockwave_ver = 7;
		if (detectIE("SWCtl.SWCtl.7.5")) this.plugin_shockwave_ver = 7.5;
		if (detectIE("SWCtl.SWCtl.8")) this.plugin_shockwave_ver = 8;
		if (detectIE("SWCtl.SWCtl.8.5")) this.plugin_shockwave_ver = 8.5;
		if (detectIE("SWCtl.SWCtl.9")) this.plugin_shockwave_ver = 9;
		if (detectIE("SWCtl.SWCtl.9.5")) this.plugin_shockwave_ver = 9.5;
		this.plugin_shockwave = (this.plugin_shockwave_ver > 0);
			// CHECK FOR WINDOWS MEDIA
		try {
			oWMP=new ActiveXObject('WMPlayer.OCX.7');
			if (oWMP) {
				this.plugin_windowsmedia = true;
				this.plugin_windowsmedia_ver = parseFloat(oWMP.versionInfo);
				if (this.plugin_windowsmedia_ver.toString().length == 1) this.plugin_windowsmedia_ver += '.0';
			}
		}
		catch(e) {
			this.plugin_windowsmedia = false;
			this.plugin_windowsmedia_ver = 0;
		}
			// CHECK FOR ADOBE SVG
		this.plugin_svg = false;
		if (detectIE("Adobe.SVGCtl")) this.plugin_svg = true;
			// CHECK FOR AUTHORWARE
		this.plugin_authorware = false;
		if (detectIE("Macromedia.AuthorwareShockwaveControl.1")) this.plugin_authorware = true;
			// CHECK FOR REALPLAYER
		this.plugin_realplayer = false;
		if (detectIE("rmocx.RealPlayer G2 Control.1")) this.plugin_realplayer = true;
	} else if (this.moz || !this.win) {
		if (navigator.plugins && navigator.plugins.length) {
				// ACROBAT
			this.plugin_acrobat = false;
			this.plugin_acrobat_ver = 0;
			for (x=0; x < navigator.plugins.length; x++) {
				if (navigator.plugins[x].name.indexOf('Adobe Acrobat') != -1) {
					this.plugin_acrobat_ver = parseFloat(navigator.plugins[x].description.split('Version ')[1]);
					this.plugin_acrobat = true;
					break;
				}
			}
				// FLASH
			this.plugin_flash = false;
			this.plugin_flash_ver = 0;
			for (x=0; x < navigator.plugins.length; x++) {
				if (navigator.plugins[x].name.indexOf('Shockwave Flash') != -1) {
					this.plugin_flash_ver = parseFloat(navigator.plugins[x].description.split('Shockwave Flash ')[1].split(" ")[0]);
					this.plugin_flash = true;
					break;
				}
			}
				// QUICKTIME
			this.plugin_quicktime = false;
			this.plugin_quicktime_ver = 0;
			for (x=0; x < navigator.plugins.length; x++)
			{
				if (navigator.plugins[x].name.indexOf('QuickTime Plug-in') != -1)
				{
					this.plugin_quicktime_ver = navigator.plugins[x].name.split('QuickTime Plug-in ')[1].split(' ')[0];
					this.plugin_quicktime = true;
					break;
				}
			}
				// SHOCKWAVE
			this.plugin_shockwave = false;
			this.plugin_shockwave_ver = 0;
			for (x=0; x<navigator.plugins.length; x++) {
				if (navigator.plugins[x].name.indexOf('Shockwave for Director') != -1) {
					this.plugin_shockwave_ver = parseFloat(navigator.plugins[x].description.split('version ')[1]);
					this.plugin_shockwave = true;
					break;
				}
			}
				// WINDOWS MEDIA
			this.plugin_windowsmedia = false;
			this.plugin_windowsmedia_ver = 0;
			for (x=0; x<navigator.plugins.length; x++) {
				if (navigator.plugins[x].name.indexOf('Windows Media') != -1) {
					this.plugin_windowsmedia = true;
					break;
				}
			}
				// ADOBE SVG
			this.plugin_svg = ((navigator.mimeTypes["image/svg"] && navigator.mimeTypes["image/svg"].enabledPlugin != null) || (navigator.mimeTypes["image/svg+xml"] && navigator.mimeTypes["image/svg+xml"].enabledPlugin != null) || (navigator.mimeTypes["image/svg-xml"] && navigator.mimeTypes["image/svg-xml"].enabledPlugin != null)) ? true : false;
				// AUTHORWARE
			this.plugin_authorware = false;
				// this.plugin_authorware_ver = 0;
			for (x=0; x<navigator.plugins.length; x++) {
				if (navigator.plugins[x].name.indexOf('authorware') != -1) {
						// this.plugin_authorware_ver = parseFloat(navigator.plugins[x].description.split('version ')[1]);
					this.plugin_authorware = true;
					break;
				}
			}
				// REALPLAYER
			this.plugin_realplayer = (navigator.mimeTypes["audio/x-pn-realaudio-plugin"] && navigator.mimeTypes["audio/x-pn-realaudio-plugin"].enabledPlugin != null) ? true : false;
		}
	}
}

function detectIE(ClassID) {
		// RESET RESULT
	result = false;
	//write out VBscript to create object for requested plugin
	document.write('<SCRIPT LANGUAGE=VBScript>\n on error resume next \n result = IsObject(CreateObject("' + ClassID + '"))</SCRIPT>\n');
	return result;
}
var is;
var isIE3Mac = false;
	// THIS SECTION IS DESIGNED SPECIFICALLY FOR IE3 FOR THE MAC
if ((navigator.appVersion.indexOf("Mac")!=-1) && (navigator.userAgent.indexOf("MSIE")!=-1) && (parseInt(navigator.appVersion)==3)) {
	isIE3Mac = true;
} else {
	is = new Is();
}
	// LOAD BROWSER SPECIFIC CSS FILES
	// DON'T FORGET TO FIRST CHECK THE BOOLEAN VARIABLE "isIE3Mac" TO SEE IF THAT'S TRUE OR NOT.
	// THE REASON WE CHECK IT FIRST IS BECAUSE IF "isIE3Mac" IS TRUE, THEN THE "is" OBJECT DOESN'T ACTUALLY EXIST,
	// AND WE DON'T WANT THE SCRIPT TO FAIL WITH AN ERROR ON IE3 FOR THE MAC.
if (isIE3Mac) {
	document.write("<LINK REL='stylesheet' HREF='mie.css' TYPE='text/css' />");
} else if (is.mac) {
		// YOU ARE USING A MACINTOSH WITH MAC OS	switch (true) {
	switch (true) {
		case (is.safari):
			document.write("<LINK REL='stylesheet' HREF='saf.css' TYPE='text/css' />");
			break;
		case (is.firefox):
			document.write("<LINK REL='stylesheet' HREF='fox.css' TYPE='text/css' />");
			break;
		case (is.opera):
			document.write("<LINK REL='stylesheet' HREF='opr.css' TYPE='text/css' />");
			break;
		case (is.seamonkey):
			document.write("<LINK REL='stylesheet' HREF='sea.css' TYPE='text/css' />");
			break;
		case (is.ie):
			document.write("<LINK REL='stylesheet' HREF='mie.css' TYPE='text/css' />");
			break;
		case (is.nav):
			document.write("<LINK REL='stylesheet' HREF='nsn.css' TYPE='text/css' />");
			break;
		case (is.moz):
			document.write("<LINK REL='stylesheet' HREF='moz.css' TYPE='text/css' />");
			break;
		default:
			document.write("<LINK REL='stylesheet' HREF='mie.css' TYPE='text/css' />");
	}
} else if (is.win) {
		// YOU ARE USING A PC WITH WINDOWS OS
	switch (true) {
		case (is.ie):
			document.write("<LINK REL='stylesheet' HREF='mie.css' TYPE='text/css' />");
			break;
		case (is.opera):
			document.write("<LINK REL='stylesheet' HREF='opr.css' TYPE='text/css' />");
			break;
		case (is.nav):
			document.write("<LINK REL='stylesheet' HREF='nsn.css' TYPE='text/css' />");
			break;
		default:
			document.write("<LINK REL='stylesheet' HREF='mie.css' TYPE='text/css' />");
	}
}

	// FLASHING LINK SCRIPT
var flashlinks = new Array();
function changelinkcolor() {
	for (i=0; i< flashlinks.length; i++) {
		var flashtype=document.getElementById? flashlinks[i].getAttribute("flashtype")*1 : flashlinks[i].flashtype * 1;
		var flashcolor=document.getElementById? flashlinks[i].getAttribute("flashcolor") : flashlinks[i].flashcolor;
		if (flashtype==0) {
			if (flashlinks[i].style.color != flashcolor)
				flashlinks[i].style.color = flashcolor;
			else
				flashlinks[i].style.color='';
		} else if (flashtype==1) {
			if (flashlinks[i].style.backgroundColor != flashcolor)
				flashlinks[i].style.backgroundColor = flashcolor;
			else
				flashlinks[i].style.backgroundColor='';
		}
	}
}
function init() {
	var i=0
	if (document.all) {
		while (eval("document.all.flashlink"+i)!=null) {
			flashlinks[i]= eval("document.all.flashlink"+i)
			i++
		} 
	} else if (document.getElementById) {
		while (document.getElementById("flashlink"+i)!=null) {
			flashlinks[i]= document.getElementById("flashlink"+i)
			i++
		}
	}
	setInterval("changelinkcolor()", 1000)
}
if (window.addEventListener)
	window.addEventListener("load", init, false);
else if (window.attachEvent)
	window.attachEvent("onload", init);
else if (document.all)
	window.onload=init;

	// CALCULATE DAY AND DATE SCRIPTS
function MakeArray() {
	var args = MakeArray.arguments;
	for (var i = 0; i < args.length; i++) {
		this[i] = args[i];
	}
	this.length = args.length;
}
function FixDate(date) {
	var base = new Date(0);
	var skew = base.getTime();
	if (skew > 0)
		date.setTime(date.getTime() - skew);
}
	// GET TIME OF DAY STRING
function GetTimeString(date) {
	var timeday = new MakeArray("morning","afternoon","evening");
	var timeitis = date.getHours();
	var daypart = 0;
	if (timeitis < 12)
		daypart = 0;
	else if (timeitis < 18)
		daypart = 1;
	else daypart = 2;
	var returned_time = timeday[(daypart)];
	return returned_time;
}
	// GET DAY, MONTH AND YEAR STRING
function GetDateString(date) {
	var daysweek = new MakeArray("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday");
	var months = new MakeArray("January","February","March","April","May","June","July","August","September","October","November","December");
		// GET DAY AND MONTH
	var dayitis = date.getDay();
	var returned_date = daysweek[(dayitis)] + ", " + months[date.getMonth()] + " " + date.getDate() + ", ";
		// GET YEAR
	var returned_year = date.getFullYear();
	return returned_date + returned_year;
}
var cur = new Date();
var str = GetTimeString(cur);
FixDate(cur);
str = str + ": " + GetDateString(cur);

	// PERFORM ROLLOVERS
function RollIt(num,imgname) {
	if (document.images) {
		if (!(appName.indexOf("microsoft") >= 0 && appName.indexOf("mac") >= 0 && is_minor <= 4.0)) {
			document[imgname].src = img[num].src;
		}
	}
}
if (document.images) {
	var imageDir = 'images/';
}
imgsrc = new Array();
imgsrc[0] = "../files/" + imageDir + "bulletarw.gif";
imgsrc[1] = "../files/" + imageDir + "bulletarws.gif";
if (document.images != null) {
	img = new Array();
	for (i = 0; i < imgsrc.length; i++) {
		img[i] = new Image();
		img[i].src = imgsrc[i];
	}
}
	// INFO POPUP WINDOWS
function PopWindow(winContent,winName,winWidth,winHeight) {
	var winOptions = 'resizable=no,location=no,directories=no,scrollbar=no,scrollbars=no,toolbar=no,menubar=no,status=no,copyhistory=no,width='+winWidth+',height='+winHeight+',left=25,top=25';
	// OPEN WINDOW
	newWin = window.open(winContent,winName,winOptions); return false;
	if (newWin.focus) {
		// SET FOCUS TO SECONDARY WINDOW
		newWin.focus();
	}
}
	// RANDOM QUOTE SCRIPT
var items = 76;
rQuote = new Array(items);

rQuote[0] = '&#147;There are two kinds of fools, ';
rQuote[0] += 'One says - this is old and therefore good. ';
rQuote[0] += 'The other says - this is new and therefore better.&#148;<BR><BR>';
rQuote[0] += '<B>~ Anonymous<\/B>';

rQuote[1] = '&#147;Military justice is to justice what military music is to music.&#148;<BR><BR>';
rQuote[1] += '<B>~ Groucho Marx<\/B>';

rQuote[2] = '&#147;Great spirits have always encountered violent opposition from mediocre minds.&#148;<BR><BR>';
rQuote[2] += '<B>~ Albert Einstein<\/B>';

rQuote[3] = '&#147;When you are courting a nice girl an hour seems like a second. ';
rQuote[3] += 'When you sit on a red-hot cinder a second seems like an hour. ';
rQuote[3] += 'That&#146;s relativity.&#148;<BR><BR>';
rQuote[3] += '<B>~ Albert Einstein<\/B>';

rQuote[4] = '&#147;I never think of the future. It comes soon enough.&#148;<BR><BR>';
rQuote[4] += '<B>~ Albert Einstein<\/B>';

rQuote[5] = '&#147;Imagination is more important than knowledge...&#148;<BR><BR>';
rQuote[5] += '<B>~ Albert Einstein<\/B>';

rQuote[6] = '&#147;The distinction between past, present, and future is only an illusion, however persistent.&#148;<BR><BR>';
rQuote[6] += '<B>~ Albert Einstein<\/B>';

rQuote[7] = '&#147;The important thing is not to stop questioning. ';
rQuote[7] += 'Curiosity has it&#146;s own reason for existing.&#148;<BR><BR>';
rQuote[7] += '<B>~ Albert Einstein<\/B>';

rQuote[8] = '&#147;The most beautiful thing we can experience is the mysterious. ';
rQuote[8] += 'It is the source of all true art and science.&#148;<BR><BR>';
rQuote[8] += '<B>~ Albert Einstein<\/B>';

rQuote[9] = '&#147;Humor is just another defense against the universe.&#148;<BR><BR>';
rQuote[9] += '<B>~ Mel Brooks<\/B>';

rQuote[10] = '&#147;Tragedy is when I cut my finger. ';
rQuote[10] += 'Comedy is when you fall down an open manhole cover and die.&#148;<BR><BR>';
rQuote[10] += '<B>~ Mel Brooks<\/B>';

rQuote[11] = '&#147;If God wanted us to fly, He would have given us tickets.&#148;<BR><BR>';
rQuote[11] += '<B>~ Mel Brooks<\/B>';

rQuote[12] = '&#147;Interestingly, according to modern astronomers, space is finite. ';
rQuote[12] += 'This is a very comforting thought - particularly for people who can never remember where they have left things.&#148;<BR><BR>';
rQuote[12] += '<B>~ Woody Allen<\/B>';

rQuote[13] = '&#147;Life is full of misery, loneliness and suffering... and it&#146;s all over much too soon.&#148;<BR><BR>';
rQuote[13] += '<B>~ Woody Allen<\/B>';

rQuote[14] = '&#147;I don&#146;t want to achieve immortality through my work... ';
rQuote[14] += 'I want to achieve it through not dying.&#148;<BR><BR>';
rQuote[14] += '<B>~ Woody Allen<\/B>';

rQuote[15] = '&#147;Eternal nothingness is fine if you happen to be dressed for it.&#148;<BR><BR>';
rQuote[15] += '<B>~ Woody Allen<\/B>';

rQuote[16] = '&#147;Eighty percent of success is showing up.&#148;<BR><BR>';
rQuote[16] += '<B>~ Woody Allen<\/B>';

rQuote[17] = '&#147;It&#146;s not that I&#146;m afraid to die... ';
rQuote[17] += 'I just don&#146;t want to be there when it happens.&#148;<BR><BR>';
rQuote[17] += '<B>~ Woody Allen<\/B>';

rQuote[18] = '&#147;As the poet said, &#146;Only God can make a tree&#146;... ';
rQuote[18] += 'probably because it&#146;s so hard to figure out how to get the bark on.&#148;<BR><BR>';
rQuote[18] += '<B>~ Woody Allen<\/B>';

rQuote[19] = '&#147;I can&#146;t listen to that much Wagner. ';
rQuote[19] += 'I start getting the urge to conquer Poland.&#148;<BR><BR>';
rQuote[19] += '<B>~ Woody Allen<\/B>';

rQuote[20] = '&#147;Given a choice between the Pope and air conditioning, I&#146;ll take air conditioning.&#148;<BR><BR>';
rQuote[20] += '<B>~ Woody Allen<\/B>';

rQuote[21] = '&#147;Any sufficiently advanced technology is indistinguishable from magic.&#148;<BR><BR>';
rQuote[21] += '<B>~ Arthur C. Clarke<\/B>';

rQuote[22] = '&#147;If an elderly but distinguished scientist says that something is possible, he is almost certainly right; ';
rQuote[22] += 'but if he says that it is impossible, he is very probably wrong.&#148;<BR><BR>';
rQuote[22] += '<B>~ Arthur C. Clarke<\/B>';

rQuote[23] = '&#147;The optimist proclaims we live in the best of all possible worlds ';
rQuote[23] += 'and the pessimist fears this is true.&#148;<BR><BR>';
rQuote[23] += '<B>~ James B. Cabell<\/B>';

rQuote[24] = '&#147;The music business is a cruel and shallow money trench, a long plastic hallway ';
rQuote[24] += 'where thieves and pimps run free, and good men die like dogs... ';
rQuote[24] += 'There&#146;s also a negative side.&#148;<BR><BR>';
rQuote[24] += '<B>~ Hunter S. Thompson<\/B>';

rQuote[25] = '&#147;If the human brain was so simple that we could understand it... ';
rQuote[25] += 'we would be so simple that we couldn&#146;t.&#148;<BR><BR>';
rQuote[25] += '<B>~ Colin McGinn<\/B>';

rQuote[26] = '&#147;So there&#146;s these two bass players who walk by this bar...<BR><BR>';
rQuote[26] += '...Well hey, it can happen!&#148;<BR><BR>';
rQuote[26] += '<B>~ Anonymous<\/B>';

rQuote[27] = '&#147;The trouble with getting it right the first time is that nobody appreciates how hard it was.&#148;<BR><BR>';
rQuote[27] += '<B>~ Anonymous<\/B>';

rQuote[28] = '&#147;I told my psychiatrist that everyone hates me. ';
rQuote[28] += 'He said I was being ridiculous - everyone hasn&#146;t met me yet.&#148;<BR><BR>';
rQuote[28] += '<B>~ Rodney Dangerfield<\/B>';

rQuote[29] = 'Son: &#147;I want to be a musician when I grow up!&#148;<BR><BR>';
rQuote[29] += 'Father: &#147;Sorry son, you can&#146;t have it both ways.&#148;<BR><BR>';
rQuote[29] += '<B>~ Anonymous<\/B>';

rQuote[30] = 'Q: What&#146;s the difference between a musician and a US savings bond?<BR><BR>';
rQuote[30] += 'A: One of them eventually matures and earns money.<BR><BR>';
rQuote[30] += '<B>~ Anonymous<\/B>';

rQuote[31] = 'Q: What&#146;s the difference between a saxophone and a lawnmower?<BR><BR>';
rQuote[31] += 'A: Vibrato.<BR><BR>';
rQuote[31] += '<B>~ Anonymous<\/B>';

rQuote[32] = 'Q: What&#146;s the difference between a drummer and a drum machine?<BR><BR>';
rQuote[32] += 'A: With a drum machine you only have to punch the information in once.<BR><BR>';
rQuote[32] += '<B>~ Anonymous<\/B>';

rQuote[33] = '&#147;Don&#146;t anthropomorphize computers... ';
rQuote[33] += 'They hate that.&#148;<BR><BR>';
rQuote[33] += '<B>~ Anonymous<\/B>';

rQuote[34] = '&#147;Learn from the mistakes of others. ';
rQuote[34] += 'You can never live long enough to make them all yourself.&#148;<BR><BR>';
rQuote[34] += '<B>~ John Luther<\/B>';

rQuote[35] = '&#147;Music is everybody&#146;s possession. It&#146;s only publishers who think that people own it!<BR><BR>';
rQuote[35] += '<B>~ John Lennon<\/B>';

rQuote[36] = '&#147;There&#146;s nothing you can do that can&#146;t be done... ';
rQuote[36] += 'Nothing you can sing that can&#146;t be sung... ';
rQuote[36] += 'Nowhere you can be that isn&#146;t where you&#146;re meant to be. ';
rQuote[36] += 'It&#146;s easy...&#148;<BR><BR>';
rQuote[36] += '<B>~ John Lennon<\/B>';

rQuote[37] = '&#147;Isn&#146;t it a pity, isn&#146;t it a shame. ';
rQuote[37] += 'How we break each other&#146;s hearts and cause each other pain. ';
rQuote[37] += 'How we take each other&#146;s love without thinking anymore. ';
rQuote[37] += 'Forgetting to give back. Isn&#146;t it a pity...&#148;<BR><BR>';
rQuote[37] += '<B>~ George Harrison<\/B>';

rQuote[38] = '&#147;When one door closes, another opens; ';
rQuote[38] += 'but we often look so long and so regretfully upon the closed door, ';
rQuote[38] += 'that we do not see the one which has opened for us.&#148;<BR><BR>';
rQuote[38] += '<B>~ Alexander Graham Bell<\/B>';

rQuote[39] = '&#147;After silence, that which comes nearest to expressing the inexpressible is music.&#148;<BR><BR>';
rQuote[39] += '<B>~ Aldous Huxley<\/B>';

rQuote[40] = '&#147;Among all men on the earth bards have a share of honor and reverence, because the muse has taught them songs and loves the race of bards.&#148;<BR><BR>';
rQuote[40] += '<B>~ Homer<\/B>';

rQuote[41] = '&#147;Music is my weapon. I believe in music, in its spirituality, its exaltation, its ecstatic nobility, its humor, its power to penetrate the basic fineness of every human being.&#148;<BR><BR>';
rQuote[41] += '<B>~ Henry Cowell<\/B>';

rQuote[42] = '&#147;It had never occurred to me before that music and thinking are so much alike. ';
rQuote[42] += 'In fact you could say music is another way of thinking, ';
rQuote[42] += 'or maybe thinking is another kind of music.&#148;<BR><BR>';
rQuote[42] += '<B>~ Ursula K. Le Guin<\/B>';

rQuote[43] = '&#147;We are what we repeatedly do. ';
rQuote[43] += 'Excellence, then, is not an act, but a habit.&#148;<BR><BR>';
rQuote[43] += '<B>~ Aristotle<\/B>';

rQuote[44] = '&#147;The only difference between Theory and Practice is that ';
rQuote[44] += 'in Theory there is no difference between Theory and Practice, but in Practice there is.&#148;<BR><BR>';
rQuote[44] += '<B>~ Marshall Spight<\/B>';

rQuote[45] = '&#147;What is music? It is spirit, but it is spirit subject to the measurement of time. It is matter, but it is matter that can dispense with space. Where words leave off music begins.&#148;<BR><BR>';
rQuote[45] += '<B>~ Heinrich Heine<\/B>';

rQuote[46] = '&#147;Theatre is life... Film is art... Television is furniture.&#148;<BR><BR>';
rQuote[46] += '<B>~ Loretta Swit<\/B>';

rQuote[47] = '&#147;Reality is not only stranger than we suppose but stranger than we can suppose.&#148;<BR><BR>';
rQuote[47] += '<B>~ J. B. S. Haldane<\/B>';

rQuote[48] = '&#147;Man can learn nothing except by going from the known to the unknown.&#148;<BR><BR>';
rQuote[48] += '<B>~ Claude Bernard<\/B>';

rQuote[49] = '&#147;Music washes away from the soul the dust of everyday life.&#148;<BR><BR>';
rQuote[49] += '<B>~ Berthold Auerback<\/B>';

rQuote[50] = '&#147;A note of music gains significance from the silence on either side.&#148;<BR><BR>';
rQuote[50] += '<B>~ Anne Morrow Lindberg<\/B>';

rQuote[51] = '&#147;Blessed are those who can laugh at themselves, for they shall never cease to be amused.&#148;<BR><BR>';
rQuote[51] += '<B>~ Anonymous<\/B>';

rQuote[52] = '&#147;I&#146;ve always thought a big laugh is a really loud noise from the soul saying: Ain&#146;t that the truth.&#148;<BR><BR>';
rQuote[52] += '<B>~ Quincy Jones<\/B>';

rQuote[53] = '&#147;The most wasted of all days is one without laughter.&#148;<BR><BR>';
rQuote[53] += '<B>~ E. E. Cummings<\/B>';

rQuote[54] = '&#147;Humor helps us to think out of the box. The average child laughs about 400 times per day, the average adult laughs only 15 times per day. What happened to the other 385 laughs?&#148;<BR><BR>';
rQuote[54] += '<B>~ USA Today<\/B>';

rQuote[55] = '&#147;If you wish to glimpse inside a human soul and get to know a man... just watch him laugh. If he laughs well, he&#146;s a good man.&#148;<BR><BR>';
rQuote[55] += '<B>~ Fyodor Dostoyevsky<\/B>';

rQuote[56] = '&#147;Laughter is not at all a bad beginning for a friendship, and it is far the best ending for one.&#148;<BR><BR>';
rQuote[56] += '<B>~ Oscar Wilde<\/B>';

rQuote[57] = '&#147;Music is your own experience, your own thoughts, your wisdom. If you don&#146;t live it, it won&#146;t come out of your horn. They teach you there&#146;s a boundary line to music. But, man, there&#146;s no boundary line to art.&#148;<BR><BR>';
rQuote[57] += '<B>~ Charlie Parker<\/B>';

rQuote[58] = '&#147;Music is the vernacular of the human soul.&#148;<BR><BR>';
rQuote[58] += '<B>~ Geoffrey Latham<\/B>';

rQuote[59] = '&#147;If you can walk you can dance. If you can talk you can sing.&#148;<BR><BR>';
rQuote[59] += '<B>~ Zimbabwe Proverb<\/B>';

rQuote[60] = '&#147;Music washes away from the soul the dust of everyday life.&#148;<BR><BR>';
rQuote[60] += '<B>~ Red Auerbach<\/B>';

rQuote[61] = '&#147;The history of a people is found in its songs.&#148;<BR><BR>';
rQuote[61] += '<B>~ George Jellinek<\/B>';

rQuote[62] = '&#147;A jazz musician is a juggler who uses harmonies instead of oranges.&#148;<BR><BR>';
rQuote[62] += '<B>~ Benny Green<\/B>';

rQuote[63] = '&#147;The whole secret of existence is to have no fear. Never fear what will become of you, depend on no one. Only the moment you reject all help are you freed.&#148;<BR><BR>';
rQuote[63] += '<B>~ Gautama Siddharta<\/B>';

rQuote[64] = '&#147;A real leader faces the music, even when he doesn&#146;t like the tune.&#148;<BR><BR>';
rQuote[64] += '<B>~ Anonymous<\/B>';

rQuote[65] = '&#147;Dogs laugh, but they laugh with their tails. What puts man in a higher state of evolution is that he has got his laugh on the right end.&#148;<BR><BR>';
rQuote[65] += '<B>~ Max Eastman<\/B>';

rQuote[66] = '&#147;You can&#146;t deny laughter; when it comes, it plops down in your favorite chair and stays as long as it wants.&#148;<BR><BR>';
rQuote[66] += '<B>~ Stephen King<\/B>';

rQuote[67] = '&#147;Live as if you were to die tomorrow. Learn as if you were to live forever.&#148;<BR><BR>';
rQuote[67] += '<B>~ Mahatma Gandhi<\/B>';

rQuote[68] = '&#147;A real friend is one who walks in when the rest of the world walks out.&#148;<BR><BR>';
rQuote[68] += '<B>~ Walter Winchell<\/B>';

rQuote[69] = '&#147;Humor is something that thrives between man&#146;s aspirations and his limitations. ';
rQuote[69] += 'There is more logic in humor than in anything else. Because, you see, humor is truth.&#148;<BR><BR>';
rQuote[69] += '<B>~ Victor Borge<\/B>';

rQuote[70] = '&#147;The power of accurate observation is commonly called cynicism by those who have not got it.&#148;<BR><BR>';
rQuote[70] += '<B>~ George Bernard Shaw<\/B>';

rQuote[71] = '&#147;Most human beings have an almost infinite capacity for taking things for granted.&#148;<BR><BR>';
rQuote[71] += '<B>~ George Bernard Shaw<\/B>';

rQuote[72] = '&#147;The future masters of technology will have to be lighthearted and intelligent. ';
rQuote[72] += 'The machine easily masters the grim and the dumb.&#148;<BR><BR>';
rQuote[72] += '<B>~ Marshall McLuhan<\/B>';

rQuote[73] = '&#147;Be who you are and say what you feel because those who mind don&#146;t matter and those who matter don&#146;t mind.&#148;<BR><BR>';
rQuote[73] += '<B>~ Dr. Seuss<\/B>';

rQuote[74] = '&#147;It&#146;s not the years honey, it&#146;s the mileage.&#148;<BR><BR>';
rQuote[74] += '<B>~ Indiana Jones<\/B>';

rQuote[75] = '&#147;To be is to do.&#148;<BR>';
rQuote[75] += '<B>~ Socrates<\/B><BR><BR>';
rQuote[75] += '&#147;To do is to be.&#148;<BR>';
rQuote[75] += '<B>~ Jean-Paul Sartre<\/B><BR><BR>';
rQuote[75] += '&#147;Do be do be do.&#148;<BR>';
rQuote[75] += '<B>~ Frank Sinatra<\/B>';
	// GENERATE A RANDOM NUMBER FOR DISPLAY, BASED ON THE NUMBER OF QUOTES (array var "items").
qNum = Math.floor(rQuote.length * Math.random());
