// Show / Hide Div by ID triggered by onclick function

function showhide(divid, state){
document.getElementById(divid).style.display=state
}
