<!--
/*************************************************************************
	FUNCTION validWholeNumber - this function validates and then formats 
	a number into 999999. 
*************************************************************************/
function validWholeNumber(value)
{	var checkOK = "0123456789";
	var checkStr = value;
	var allValid = true;
	for (i = 0;  i < checkStr.length;  i++)
	{	ch = checkStr.charAt(i);
		for (j = 0;  j < checkOK.length;  j++)
		if (ch == checkOK.charAt(j))
	        break;
	    if (j == checkOK.length)
	    {	allValid = false;
			break;
		}
	}
	if (!allValid)
	{   return false;
	}
	return true;
}
//-->

