/*******************************
Function: viewdirections
Desc: reveals directions div
*******************************/
function changeBtnText(which){
    if($(which).value == '+ View Directions'){
        $(which).value = '- Hide Directions';
    }else{
        $(which).value = '+ View Directions';
    }
}