﻿/*
 Date: 30-07-2008
 Issue: TINT-28309
 Author: Natnael Tefera
 Note: Added these functions to make a div visible at an onmouseover
	   and invisible at an onmouseout.
*/

function showDiv(id)
{
	//var show = document.getElementById(id);
	if (document.getElementById(id)) 
	{
	document.getElementById(id).style.display = 'block';
	//setTimeout("show.style.display = 'block';",20000);
	
	//show.style.display = 'b';
	//setTimeout("document.getElementById('divoverlay').style.display = 'block';",1);
	setTimeout("document.getElementById('"+id+"').style.display = 'none';",1500);
	}
}

function hideDiv(id)
{
	var show = document.getElementById(id);
	show.style.display = 'none';
}
