function tog(id)
{
var s = document.getElementById(id).style;
s.display = (s.display == "block" ? "none" : "block");
}
