function ShowTable(id) {
	var table = document.getElementById(id);
	if (table)
		table.style.display = "block";
}
function HideVideo(id)
	{
   document.getElementById(id).style.display="none";
	}