<!-- 

function showProduct(id,inorout)
{
	if (inorout==0) 
	{
		document.getElementById(id).style.display='inline';
	}
	else
	{
		document.getElementById(id).style.display='none';
	}
}

-->
