var _PinError_ = "Please insert your PIN code";
var _ObjectSelectionError_ = "Por favor elige un objeto antes de continuar";
var _AgreeError_ = "Para participar en la promoción es necesario que hayas leído la Privacidad de Datos";
var _NumberFormatError_ = "Por favor inserte un número de móvil correcto";
    var	_NumberFormatError_TooShort_ = "Por favor inserte un número de móvil correcto";

var _CarrierSelectError_ = "Por favor elige tu operador";
var _CodeError_ = "Please enter validation code";
var _HeadsetSelectError_ = "Por favor selecciona tu modelo de móvil";

var _MaxPhoneLength_ = 9;
var _MinPhoneLength_ = 9;
var _PhoneRE_ =/^6\d+$/ ; 
var _PhoneDefault_ = "6";

function CheckAgree(oForm)
{
    if (!oForm.agree.checked){
        alert(_AgreeError_);
        return false;
    }
    return true;
}