function ShowCaption(num)
{
	for (i=1; i<=14; i++)
	{
		var cap = "caption" + i
		document.getElementById(cap).style.display = "none"
	}
	
	var theCap = "caption" + num
	
	document.getElementById(theCap).style.display = "block"
}


