// JavaScript Document
function show(hotID){

if
(document.getElementById(hotID).style.display == '')
document.getElementById(hotID).style.display = 'block';

else
document.getElementById(hotID).style.display = '';

 
}

var currentShow = null;
function divShow(id)
{
	var d = document.getElementById(id);
	if(currentShow)
	{
		currentShow.style.display = 'none';
	}
	d.style.display = 'block';
	currentShow = d;
}
