function SubmitForm()
{
 	var mFlag = true;
	
  if (mFlag && !ValidateEmpty(document.Form1.email) )
	{ 
	    mFlag = false;
	}


	if( mFlag && !IsEmailValid( document.Form1.email.value) )
	{
		alert("Email address is not valid.");
		document.Form1.email.focus();
		mFlag = false;
	}

    if (mFlag && !ValidateEmpty(document.Form1.Password) )
	{ 
	    mFlag = false;
	}
	
  if (mFlag && (document.Form1.confirm_password.value != document.Form1.Password.value) )
	{
		alert("Confirm password you have entered is not correct.");
		document.Form1.confirm_password.focus();
		mFlag = false;
	}
	

   
   if (mFlag && !ValidateEmpty(document.Form1.First_name) )
	{ 
	    mFlag = false;
	}
    if (mFlag && !ValidateEmpty(document.Form1.City) )
	{ 
	    mFlag = false;
	}
	
/*	if (mFlag && !ValidateEmpty(document.Form1.State) )
	{ 
	    mFlag = false;
	}
*/	
    if (mFlag && (document.Form1.Country.value==0) )
	{ 
	    alert("Please select the country.");
		document.Form1.Country.focus();
	    mFlag = false;
	}

	
	
	return mFlag;
}
