function showdiv(count,index)
{
	var i=1;
	for (i=1;i<=count;i++)
	{
		var tdstyle = document.getElementById("td"+i);
		var divstyle = document.getElementById("div"+i);
		if (tdstyle!=null && divstyle != null)
		{
			if (i==index)
			{
				divstyle.style.display="";
				divstyle.className="leftmenu_border";
				tdstyle.className="leftmenu_box01";
			}
			else
			{
				divstyle.style.display="none";
				tdstyle.className="leftmenu_box";
			}
		}	
	}	
}