function showHideTables(tvalue) {
	for (i=1;i<=6;i++)	//where 5 is the total available tables.
	{
		if (i == tvalue)	//make Table <tvalue> visible
		{
			document.getElementById("tbl" + i).style.display = "";
		}
		else				//All other tables are made invisible
		{
			document.getElementById("tbl" + i).style.display = "none";
		}
	}
}