// JavaScript Document


function showMe(id){ document.getElementById(id).style.visibility = "visible"; }

//

function hideMe(id){ document.getElementById(id).style.visibility = "hidden"; }

