function s(H,p)
{
	document.getElementById(p).innerHTML=H;
	document.getElementById(p).style.visibility='visible';
}

function h(p)
{
	document.getElementById(p).style.visibility='hidden';
}



