function Toggleshow(name)
{
var show = document.getElementById (name);
if (show) show.style.display = show.style.display == 'none' ? 'block' : 'none';
}