var timerID = 0
function hideMewithTimeOut(divid)
{
	timerID=setTimeout('hideMe("'+divid+'")',100);
}

function showMe(divid)
{
	document.getElementById(divid).style.display = ''
	clearTimeout(timerID);
}

function hideMe(divid)
{
	//alert(divid)
	document.getElementById(divid).style.display = 'none'
}

