// This function is used to show and hide more information 
function moreLess(hide, show)
{	
	document.getElementById(show).style.display = '';
	document.getElementById(hide).style.display = 'none';
}
