function DisplayTable(tabId){
	if(document.all[tabId].style.display == "")
    {
		document.all[tabId].style.display = "none";
    }
    else
    {
        document.all[tabId].style.display = "";
    }
}