// JavaScript Document

function showhide(show,howmany){
	for(i=1;i<=howmany;i++)
	{
		document.getElementById("sh"+i).style.display = 'none';
	}
	document.getElementById("sh"+show).style.display = 'block';
}
