function showDescription (divID) {				
	if(document.getElementById) {
		document.getElementById(divID).style.display="inline";
	}
}
			
function hideDescription (divID) {				
	if(document.getElementById) {
		document.getElementById(divID).style.display="none";
	}
}
