var lastChild = 0;
function showCategory()
{
	if(document.getElementById('cats').style.display=='block')
	{
		document.getElementById('cats').style.display='none';
	}
	else
	{
		document.getElementById('cats').style.display='block';
	}					
}

function showChild(id, parent)
{
	
	if(id!=lastChild)
	{
		if(lastChild!=0 && lastChild!=parent)
			document.getElementById(lastChild).style.display='none';
		
		if(id==parent)			
			document.getElementById(parent).style.display='none';
		else	
			document.getElementById(id).style.display='block';
			
		lastChild=id; 
	}	
	else if(id==lastChild)
	{	
		//alert(id  + " and " + lastChild + "are the same"); 
		document.getElementById(id).style.display='none';
		lastChild=0; 
	}
		
	
}

function highlight(childID)
{
	document.getElementById(childID).style.backgroundColor='591611';		
}

function unhighlight(childID, orig)
{
	document.getElementById(childID).style.backgroundColor=orig;		
}

function selectCategory(id, name)
{
	window.location="http://jondo.com/browse/index.php?id="+id; 
}

function showCustomS()
{
	if(document.upform.dynamicSizes.checked)
	{
		document.getElementById('customS').style.display='table-row';
	}
	else
	{
		document.getElementById('customS').style.display='none';
	}

}
