function hidediv(id){
    $(id).style.display="none";
}

function showdiv(id){
    $(id).style.display="block";
}