function show(n,a)
{

	if (n=="") 
	{
		a.value=""
		a.focus();
	}
	else
	{
	if (isNaN(n))
	{
		alert("Please enter numeric only")
		a.value=""
		a.focus();
	}
	}
}

