﻿// JScript File
function PayType(Id, DisplayId){
    var RadioButtonListId = document.getElementById(Id);
    //var DropDownId = document.getElementById(Id);
    var RadioList = RadioButtonListId.getElementsByTagName("input");
    Flag = "";
    for (i = 0 ; i < RadioList.length ; i++) {
        var Element = RadioList[i];
        
        if (Element.type == "radio" && Element.checked){ 
            //alert(el.value);
            Flag = Element.value;
            
        }
    }
    if (Flag == "C")
        document.getElementById(DisplayId).style.display="none";        
    else
        document.getElementById(DisplayId).style.display="block";       
        
    //alert(Flag + " s " + document.getElementById(DisplayId).style.display )
} 

function DownLoad(){
    alert("Please Note that Rs 100 will be charged against offline Registration")
    window.location="BCSC-FORM.zip"
}
    


