

        <!-- Begin

    	// <SCRIPT LANGUAGE="JavaScript1.1">
        //<!-- Original:  Martin Webb (martin@irt.org) -->
        //<!-- This script and many more are available free online at -->
        //<!-- The JavaScript Source!! http://javascript.internet.com -->

		// Trim and VerifyForm added by James Wiske - April 3, 2002 - not using that annoying 
		// JavaScript bracket indentation.	
		function Trim( x ) 
		{
		    while ( x.substring( 0, 1 ) == ' ' ) 
				x = x.substring( 1 );
		    while ( x.substring( x.length-1, x.length ) == ' ' ) 
				x = x.substring( 0, x.length-1 );
		    return x;
		}
		
		function VerifyForm( )
		{
			var form_ok = true;
			
			var f_name = Trim( document.myForm.fname.value );
			var l_name = Trim( document.myForm.lname.value );
			var homephone = Trim( document.myForm.hphone.value );
			var email = Trim( document.myForm.EMAIL.value );
		
			if( ( f_name == '' ) || ( l_name == '' ) || ( homephone == '' ) || ( email == '' ) )
			{
				form_ok = false;
				alert( "Please complete the first name, last name, home phone, and e-mail fields marked with the red asterik.\nIf you do not have an e-mail address, please fill in with an \'X\'." );
			}
			
			return form_ok;
		
		}
		
		// End ->
		
        function right(e) {
          if (navigator.appName == 'Netscape' && 
            (e.which == 3 || e.which == 2))
             return false;
          else if (navigator.appName == 'Microsoft Internet Explorer' && 
             (event.button == 2 || event.button == 3)) {
                alert("Sorry, you do not have permission to right click.");
                return false;
               }
			   
          return true;
         }

         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;

        //  End -->
		
	<!--Begin

        function about() {
         alert("Advertisers, calculations and/or links at this Web site are for general information purposes only.  It is the sole responsibility of any person viewing these pages to verify by outside means the accuracy of the information prior to taking any action based on the content of this web site and any web site linked to it. All of the information provided here, while considered reliable, is not guaranteed by Boston Avenue Travel or W3 Small Business Solutions, Ltd.  Independent verification is always recommended. When in doubt, consult with the necessary professional.");
         }

        // End-->

        //Display non-scrolling message in browser status bar
        <!--Begin
         function StatMsg(){
            msg = "We're NEW!   Watch for More Updates to BostonAveTravel.com!";
            window.status = msg;
			return true;
         }
        StatMsg();

        // End-->
 

	<!--Begin

        //Display current date
         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);
          }

          function getString(date) {
            var months = new makeArray("January","February","March","April","May","June","July","August","September","October","November","December");
            return months[date.getMonth()] + " " + date.getDate() + ", " + demoronizeCurrentYear(date.getYear());
          }
          //turns two and three digit years into four digit years
          //assumes that the current year is post 2000. (do not use for dates that may be in ith past)
          //this function is NOT year 2100 compliant.
          function demoronizeCurrentYear(year)  
          { 
            if (year < 100)
            {
             //two digit year
             year += 2000;  
             } 
            else if (year < 1000) 
            {
             //three digit year returned by some brain-damaged implementations of javascript
             year += 1900;
             }
         return year;
         }

          function showDate(){
            var cur = new Date();
            fixDate(cur);
            var str = getString(cur);
            document.write(str);
          }
   
        // End-->
		
		
		
			
		
		
		
