function DisplayDesc(id) {

	var obj = document.getElementById(id);	
	if (obj.style.display != 'inline')
		obj.style.display = 'inline';
	else
		obj.style.display = 'none';		
}
	
function GotoItem(obj) {

	self.location=obj.href;
	
}

