<!--
function isaPosInt(str) 
{
   if (str == "" || str == null)
	return false;
   else
	{
	for (var i=0; i < str.length; i++)
		{
		if (str.charAt(i) < "0" || str.charAt(i) > "9")
			return false;
		}	
	return (parseInt(str) >= 0)
	}
   return true;
}
function numbercheck(numberitem)
{
	var itemtext;
	itemtext=numberitem.value;
	if(itemtext=="")
		return;
	if(!isaPosInt(itemtext))
	{
		alert("You must enter a number in this box.");
		numberitem.value="";
	}
}
-->
