			<!--Hide JavaScript from JavaScript-Impaired Browsers
			
			//=================================================================
			// CHECKS TO SEE IF IT'S INTERNET EXPLORER BROWSER
			//=================================================================
			var msIE;
            if (navigator.appName.indexOf("Netscape") != -1) {msIE = false}; 
			
			//=================================================================
			// THIS SECTION DISABLES THE MOUSE CLICK
			//=================================================================
			//document.onmousedown=right;
			//document.onmouseup=right;
			//if (document.layers) window.captureEvents(Event.MOUSEDOWN);
			//if (document.layers) window.captureEvents(Event.MOUSEUP);
			//window.onmousedown=right;
			//window.onmouseup=right;	
 

			//=================================================================
			// Function: DISPLAY DATE
			//=================================================================
			function writeDate(sType){
				today=new Date();
				var dMonth
				var dDay
				
				//Build an array initializer
				function isnArray() {
				 months=isnArray.arguments.length
				 for (var i=0;i<months;i++) {
					this[i+1] = isnArray.arguments[i];
					}
				}
				// And months and day arrays
				var isnMonths=new isnArray("January","February","March","April","May","June","July","August","September","October","November","December");
				var isnShrtMonths=new isnArray("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec");

				if(today.getYear() < 1900){
					thisYear = today.getYear() + 1900;
				}
				else {
					thisYear = today.getYear();
					if (sType == "LONG"){
    					document.write(isnMonths[today.getMonth()+1]+ " " +today.getDate()+", "+thisYear);
    			    }
    			    else {
    			        //dMonth = today.getMonth()+1
    			        //if (today.getMonth()+1 < 10) {
    			        //    dMonth = '' + today.getMonth()+1
    			        //}
    			        dMonth = isnShrtMonths[today.getMonth()+1]
    			        dDay = today.getDate()
    			        if (today.getDate() < 10) {
    			            dDay = '' + today.getDate()
    			        }    			        
    			        document.write(dDay + " - " + dMonth + " - "+ thisYear);
    			    }
    			    
				}
			}


			//================================================================================
			//DEVELOPER: SCOTT RUPP
			//DATE:	05/01/01  BUT DOES IT REALLY MATTER?  IT'S MINE! BWA-HA-HA-HA
			//
			//HIDE EMAIL ADDRESS FROM THOSE TERRIBLE, JUNK MAIL PRODUCING, "EMAIL ROBOTS" - ROBOTS THAT COLLECT EMAIL
			//ADDRESSES IN YOUR SITE.  EMAIL REMAINS VISIBLE FOR USERS BUT NOT FOR THOSE PESKY CRAWLERS
			//
			//
			// TO CALL IT: 
			//    writeemail("yourname","mydot.com","")  --> shows "yourname@dotcom.com"
			//    writeemail("yourname","mydot.com","My Full Name")  --> shows "My Full Name"
			//    javascript:writeEmail('srupp','interexposure.com',"")
			//    document.write("<br>") 
			//    javascript:writeEmail('srupp','interexposure.com','scott rupp')			
			//================================================================================
			function writeEmail(name,domain,show){
				if (show == ""){
					document.write('<a href=\"mailto:' + name + '@' + domain + '\">');
					document.write(name + '@' + domain + '</a>');
				}
				else {
					document.write('<a href=\"mailto:' + name + '@' + domain + '\">');
					document.write(show + '</a>');	
				}
			}
			

			//================================================================================
			//DEVELOPER: SCOTT RUPP
			//DATE:	05/01/01
			//
			//Disables the option to right click the web pages
			//
			//
			//This function is beging called from the <BODY> tag 
			//================================================================================
			function right() {
				var msg = "Right Mouse Click is Disabled";
				if (navigator.appName == 'Netscape' && e.which == 3) {
					alert(msg);
					return false;
				}

				if (navigator.appName == 'Microsoft Internet Explorer' && event.button==2) {
					alert(msg);
					return false;
				}
				else return true;
			}


      //============================================================================= 
      // Type:    Function 
      // Name:    jsTrim() 
      // Purpose: Similar to VB Trim() function 
      // Input:   sValue = Value to be trimmed 
      // Output:  sValue without leading and trailing spaces 
      // History: 
      //     Scott Rupp     : 09/14/01 : Created 
      //============================================================================= 
      function jsTrim(sValue){ 
         //Trim leading spaces 
         while('' + sValue.charAt(0)==' '){ 
            sValue=sValue.substring(1,sValue.length); 
         } 
         //Trim trailing spaces 
         while(''+sValue.charAt(sValue.length-1)==' '){ 
         sValue=sValue.substring(0,sValue.length-1); 
         } 
         
         return sValue 

      } 
			
		
			// End of DisablingRightClick
