// JavaScript Document
function showproduct(product)
{
	if (document.getElementById("content2") != null)
	{
		var content = document.getElementById("content2");
		switch (product)
		{
			case "canoemodel1":
			content.innerHTML = '<img src="image/canoemodel1.jpg" alt="" width="300" height="300" border="0" /></br/>Canoe Model 1';
			break;
			
			case "canoemodel2":
			content.innerHTML = '<img src="image/canoemodel2.jpg" alt="" width="300" height="300" border="0" /></br/>Canoe Model 2';
			break;

			case "coconut":
			content.innerHTML = '<img src="image/coconutproduct.jpg" alt="" width="300" height="300" border="0" /></br/>Coconut Fibre rope (ekkwal)';
			break;
			
			case "fiberglass":
			content.innerHTML = '<img src="image/fiberglassproduct.jpg" alt="" width="300" height="300" border="0" /></br/>Fibreglass Dinghy';
			break;

			case "traditional":
			content.innerHTML = '<img src="image/traditionaltool.jpg" alt="" width="300" height="300" border="0" /></br/>Traditional Pounding Implement (drekka in nin)';
			break;

		}
	}
}