// JavaScript Document
function ChangeImgSign(ID ,TABLEID,IDVAL)
{	
ShowRegTable(TABLEID);
window.location.href="more_product.php?cat_id="+IDVAL;
}

function ShowRegTable(TABLEID)
{
	if(document.getElementById(TABLEID).style.display == "none")
	{
		document.getElementById(TABLEID).style.display = "block";
	}
	else
	{
		document.getElementById(TABLEID).style.display = "none";
	}
}