// JavaScript Document
function show(id)
{
	theObj = document.getElementById(id);	
	if(theObj.style.display=='none')
	theObj.style.display ='block';
	else
	theObj.style.display ='none';	
}
