function searchform()
{
	oTable = document.getElementById('searchForm');
	if(oTable)
	{
		if(oTable.style.display == 'none')
		{
			oTable.style.display = 'block';
		}
		else
		{
			oTable.style.display = 'none';
		}
		//alert(oTable.style.display);
	}
}