﻿// JScript File

var cmnJsAdd = "ctl00_ContentPlaceHolder1_";

//var RdoCountryId = document.getElementById(cmnJsAdd + "RdoCountry");

//var drpCountryDivId = document.getElementById("drpCountryDiv");
//var txtCountryDivId = document.getElementById("txtCountryDiv");

//var RdoCountry_0_Id = document.getElementById(cmnJsAdd + "RdoCountry_0");
//var RdoCountry_1_Id = document.getElementById(cmnJsAdd + "RdoCountry_1");


//function ChangeRdoCountry()
//{
////if(RdoCountryId.value==)
//alert(RdoCountry_0_Id.value);

//}//End function ChangeRdoCountry()

function selectWhrHrd(This)
{
    document.getElementById(cmnJsAdd + "txtWhrHrd").value = This.value;
    //alert(This.value);
    if(This.value=="other")
    {
        document.getElementById("divWhrHrdOther").style.display = "inline";
        document.getElementById(cmnJsAdd + "txtWhrHrd").value = "";
    }
    else
    {
        document.getElementById("divWhrHrdOther").style.display = "none;";
    }
    
}//End selectWhrHrd(This)
