function ValidateEmailAddress(email)
{//to do actual validation
	if (email==''){return false;}
	if (email.search('@')==-1)
	{
		return false;//NO @ SIGN
	}
	if (email.search('@')==0)
	{
		return false;//first charcter
	}
	return true;
}

function validateInteger( strValue ) {
/************************************************
DESCRIPTION: Validates that a string contains only
    valid integer number.

PARAMETERS:
   strValue - String to be tested for validity

RETURNS:
   True if valid, otherwise false.
******************************************************************************/
  var objRegExp  = /(^-?\d\d*$)/;

  //check for integer characters
  return objRegExp.test(strValue);
}

function IsUS(Country)
{

	if (Country=='GU' || Country=='AS' || Country=='MH' || Country=='MP'|| Country=='FM' || Country=='VI' || Country=='PR')
	{

		return true;
	}

	return false;
}

function validateMoney( strValue ) {
  var objRegExp  = /(^[0-9]+(\.[0-9]{1,2})?$)/;

  //check for integer characters
  return objRegExp.test(strValue);
}