function fold(theid) {
        var theid=document.getElementById(theid);
        theid.style.display=(theid.style.display=="block")? "none" :
"block";
}

function clearvalue(fieldID) {
document.getElementById(fieldID).value='';
}