//javascript - show/hide tbox
function show(id)
	{
	document.getElementById('tbox' + id).style.visibility='visible';
	return false;
	}
function hide(id)
	{
	document.getElementById('tbox' + id).style.visibility='hidden';	
	return false;
	}
	
// close notification in 10 secs
window.setTimeout( closeNotification, 10000 );

//script hide notification area
function closeNotification(){
document.getElementById("notification").style.display="none";
} 