function showHide(showWhat,hideWhat)
{
	if(showWhat != '')
	{
		document.getElementById(showWhat).style.display = "block";
	}
	if(hideWhat != '')
	{
		document.getElementById(hideWhat).style.display = "none";
	}
} 