﻿var hasEdit = false;

function ShowDddYes(CurVal,DropDown){
    if(CurVal=='Yes'){
        document.getElementById(DropDown).className='Input';
    }else{
        document.getElementById(DropDown).className='InputHide';
    }
}

function ShowRadYes(CurVal,DropDown){
    if(CurVal=='Yes'){
        document.getElementById(DropDown).className='Input';
    }else{
        document.getElementById(DropDown).className='InputHide';
    }
}

function ShowTableYes(CurVal,Table){
    if(CurVal=='1'){
        document.getElementById(Table).className='';
    }else{
        document.getElementById(Table).className='InputHide';
    }
}

function ShowListCheck(CurVal,ListBox){
    if(CurVal){
        document.getElementById(ListBox).className='Input';
    }else{
        document.getElementById(ListBox).className='InputHide';
    }
}
function ShowTextBox2(CurVal,TextBox1, TextBox2){
    if(CurVal=='Friend'){
        document.getElementById(TextBox1).className='FormRow';
        document.getElementById(TextBox2).className='FormRowHidden';
    }else{
        document.getElementById(TextBox1).className='FormRowHidden';
        document.getElementById(TextBox2).className='FormRow';
    }
}
function hasBeenEdit(){
    hasEdit = true;
}
function NavigateAway(){
    if(hasEdit){
        var NavAway = false;
        if(window.confirm('Discard unsaved information')){
            NavAway = true;
        }else{
            NavAway = false;
        }
        
        return NavAway;
    }
}