	function showdescription(descriptionname)
	{
		var element;
		element = document.getElementById(descriptionname);
	
		if (element.style.display){
			new Effect.BlindDown(element);
		} else {
			new Effect.BlindUp(element);
		}
	}
	
	function expanddetails(expandeddetails, moreblock)
	{
		var element0, element1;
		element0 = document.getElementById(expandeddetails);
		element1 = document.getElementById(moreblock);

		if (element0.style.display){
			new Effect.BlindDown(element0);
			element1.style.display = "none"
		} else {
			new Effect.BlindUp(element0);
			element1.style.display = "inline"
		}
	}
	
	

	
	