function checkNumber(formfield)
{
	if (isNaN(formfield.value))
	{
		var msg = "ERROR! \n\n";
		msg += "- Do not put spaces between the characters \n";
		msg += "- You must only use numbers \n";
		
		alert(msg)
		formfield.value = ""
		formfield.focus()
	}
}