function setvisibility(idcheck,idshow)
{
	if (document.getElementById(idcheck).checked == true)
	{
		document.getElementById(idshow).focus();
	}
}


