function showDiv(theDiv){
	//try
	//{
	//	clearTimeout(t);
	//} catch(e){}
	
	if (document.getElementById) {
		var theContent = document.getElementById(theDiv);
		theContent.style.display = "block";
	}
	return;
} 

var t = null;
function hideTime(theDiv){
	
	 t = setTimeout("hideDiv('" + theDiv + "');",500);
	
}


function hideDiv(theDiv){
	if (document.getElementById) {
		var theContent = document.getElementById(theDiv);
		theContent.style.display = "none";
	}
	return;
}