function validateContactUs()
{
	//======= FIRST NAME =========================================================================
	if( isWhitespace( document.getElementById( "firstname" ).value ) == true )
	{
		alert( "Enter first name!" );
		document.getElementById( "firstname" ).focus();
		return false;
	}
	if( document.getElementById( "firstname" ).value.length > 100 )
	{
		alert( "First name cannot have greater than 100 characters" );
		document.getElementById( "firstname" ).focus();
		return false
	}
	//======= LAST NAME =========================================================================
	if( isWhitespace( document.getElementById( "lastname" ).value ) == true )
	{
		alert( "Enter last name!" );
		document.getElementById( "lastname" ).focus();
		return false;
	}
	if( document.getElementById( "lastname" ).value.length > 100 )
	{
		alert( "last name cannot have greater than 100 characters" );
		document.getElementById( "lastname" ).focus();
		return false
	}	
	//======= ADDRESS =========================================================================
	if( isWhitespace( document.getElementById( "address" ).value ) == true )
	{
		alert( "Enter address!" );
		document.getElementById( "address" ).focus();
		return false;
	}
	if( document.getElementById( "address" ).value.length > 100 )
	{
		alert( "Address cannot have greater than 100 characters" );
		document.getElementById( "address" ).focus();
		return false
	}
	//======= COUNTRY =========================================================================
	theSelFrom3	=	document.getElementById("country");
	var id		=	theSelFrom3.options[theSelFrom3.selectedIndex].value
	if(id==0) 
	{
		alert("Please select country!");
		document.getElementById("country").focus();
		return false;
	}
}