function showText(x)
	{
		//alert("will show text now..") ;
		document.getElementById(x).style.display="";
	}
function hideText(x)
{
	//alert("will hide text now..") ;
	document.getElementById(x).style.display="none";
}