function Show (link_id, about_id) 
{
	n=document.getElementById('about').getElementsByTagName('div').length;
	for (i=0; i<n; i++)
	{
		document.getElementById('about').getElementsByTagName('div').item(i).style.display = 'none';
	}
	document.getElementById(about_id).style.display = 'block';
} 
