// JavaScript Document

var lastBox=null;

	function showBox(id1)
	{
		var box=document.getElementById(id1);

			if(lastBox!=null){
					lastBox.style.display='none';
				}

					lastBox=box;
					box.style.display='block';

			if(lastBox==null)
				lastBox.style.display='none';
			}
