var products = new Array();

function showPersonnel(tab, productName, namehide)
{
	var productToShow = document.getElementById(productName);
	var nameToHide = document.getElementById(namehide);

	for(i = 0; i< products.length; i++)
	{
		// Get the current panel
		var curProduct = document.getElementById(products[i]);

		// If it exists, hide it
		if (curProduct != null)
			curProduct.style.display = 'none';
	}

	// Show the panel
	nameToHide.style.display = 'none';
	productToShow.style.display = 'block';
	
	return false;
}

function hidePersonnel(tab, productName, namehide)
{
	var productToShow = document.getElementById(productName);
	var nameToHide = document.getElementById(namehide);
	
	for(i = 0; i< products.length; i++)
	{
		// Get the current panel
		var curProduct = document.getElementById(products[i]);

		// If it exists, hide it
		if (curProduct != null)
			curProduct.style.display = 'none';
	}

	// Show the panel
	nameToHide.style.display = 'block';
	productToShow.style.display = 'none';
	
	return false;
}