/*
#################################################################################################### 
# File Name: about_us.js
# File Version: v 1.0
# Created By: Sarvesh Borkar	
# Created On: 5 Feb 2008
# Last Modified By:
# Last modified On:
# This file carries the javascript for about us page
#====================================================================================================
*/


/*
#====================================================================================================
#  Function Name    :    checkAboutUs()
#  Created By: Sarvesh Borkar
#  Created On: 5 Feb 2008
#  Last Modified By: 
#  Last modified On: 
#  Purpose : check the about us
#  Parameters: frm : Form Object
#----------------------------------------------------------------------------------------------------
*/
function checkAboutUs(frm)
{
    with(frm)
    {
		
		if(!IsEmpty(txtName, translate('enter_your_name')))
        {
            return false;
        }
		
        if(!IsEmpty(txtEmail, translate('enter_email_address')))
        {
            return false;
        }
		
        if(!IsEmail(txtEmail, translate('enter_valid_email_address')))
        {
            return false;
        }
		
		if(!IsEmpty(txtMessage, translate('enter_message_to_be_sent')))
        {
            return false;
        }		
		
        hdMode.value = "about_us";
		action = "about_us.php";
		fnDisableButtonOnSubmit(frm); //disable button on submit
    }        
}
