// JavaScript Document
function generalPop( url  ){
	window.open( url, "pop", "toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=yes,width=600,height=300,left=250,top=50");
	return false;
}

function generalPopTall( url ){
	window.open( url, "pop", "toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=yes,width=600,height=600,left=250,top=50");
	return false;
}

function expandCat( id ){
	var node = document.getElementById( "subcat" + id );
	var nameli = document.getElementById( "topcat" + id );
	
	if( node.style.display == "none" ){
		node.style.display = "block";
		nameli.className = "nav bold";
	}else{
		node.style.display = "none";
		nameli.className = "nav";
	}
}
