function showProduct(itemid) 
{
	document.getElementById(itemid).style.display = "block";
	document.getElementById("rollEmpty").style.display = "none";
}

function hideProduct(itemid) 
{
	document.getElementById(itemid).style.display = "none";
	document.getElementById("rollEmpty").style.display = "block";
}
