﻿// JScript File


        function Page_Validate()
        {
            if( !ValidateInput())
            {
                ShowErrorMessage();
                return false;
            }
            else return true;
            
        }
      
      
        function Page_Submit()
        {
            if(Page_Validate())
            {
               $("form1").submit();
            }
        }
        
       
       function Page_Load()
       {
            
       }
      
       function Page_Init()
       {
          AttachFieldAutoFormat();  
          ToggleDisplayInit();  
       } 
      
       Event.observe(window, 'load', Page_Init,false);
       
