﻿function JavaScriptOnLoad() {

    window.document.getElementById("ctl00_cp_left_content_text_method_other").style.visibility = "hidden";
    window.document.getElementById("ctl00_cp_left_content_text_other").style.visibility = "hidden";
    window.document.getElementById("ctl00_cp_left_content_text_ByOther").style.visibility = "hidden";
    
    
}

function javascriptEvent() {

    if (window.document.getElementById("ctl00_cp_left_content_text_method_check_3").checked) {
        window.document.getElementById("ctl00_cp_left_content_text_method_other").style.visibility = "visible";
        window.document.getElementById("ctl00_cp_left_content_text_method_other").focus();
    }
    else {
        window.document.getElementById("ctl00_cp_left_content_text_method_other").style.visibility = "hidden";

    }

}

function javascriptUnhide_respondent() {
    if (window.document.getElementById("ctl00_cp_left_content_text_ddl_respondent").value == 'Other') {

        window.document.getElementById("ctl00_cp_left_content_text_other").style.visibility = "visible";
    }
    else {
        window.document.getElementById("ctl00_cp_left_content_text_other").style.visibility = "hidden";
    }
}

function javascriptUnhide_wasitby() {
    if (window.document.getElementById("ctl00_cp_left_content_text_WasItBy").value == 'Other') {

        window.document.getElementById("ctl00_cp_left_content_text_ByOther").style.visibility = "visible";
    }
    else {
        window.document.getElementById("ctl00_cp_left_content_text_ByOther").style.visibility = "hidden";
    }
}

function javascriptDropEvent() {
    alert('here');
}

function createCalendar() 
{
    var cal = new CalendarPopup();
    alert('here');
}