		function isNum(txt){
			if (isNaN(txt.value)){                
				alert('Numbers only!');
				txt.focus();
				txt.select();
				}
		}	
