function showtext(textid)
{
	var myObj = document.getElementById(textid);
	myObj.style.display = "block";
}

function hidetext(textid)
{
	var myObj = document.getElementById(textid);
    myObj.style.display = "none";
}
