﻿// JScript File
function EnabledSendButton(){
	var c=RFunctions._getObj("UcUploadRegister1_ckbPrivacy");
	var bl=c.checked;
	RFunctions._disabledObj("UcUploadRegister1_ckbConsenso",!bl);
	RFunctions._disabledObj("UcUploadRegister1_btnSend",!bl);
}
function ValidateCountrySelection(source, arguments)
{
	var CountryList = document.getElementById("UcUploadRegister1_ddlCountry");

	if (null != CountryList)
	{
		if(CountryList.value=="-1"){
		    arguments.IsValid=false;
		    }
		else{
		    arguments.IsValid=true;
		    }
	}
	else
	{
		arguments.IsValid = false;
	}
}	