// JavaScript Document
function chkHinde(objDiv)
{   
	var obj=document.getElementById("menu" + objDiv);
	
	if (obj)
	{
	    if(obj.innerHTML.length < 30)
	    {
	        window.location = "/pro.htm?proClsId=" + objDiv;
	        return;
	    }
	    else
	    {
		    if (obj.style.display=="none")
		    {
                obj.style.display='';
		    }
		    else
		    {
			    obj.style.display='none';
		    }
		}
	}
}
