// Javascript from Moodle modules
  function acheckforposint(charCode){
	if( charCode < 48 || charCode > 57 ){
		alert("Only numeric characters allowed");
  	}
  }