// ------------------------------------------------
<!--
function isInt(field) {
	var x = /\d/;
	if (x.test(field)) {
		return true;
	} else {
		return false;
	}
}
//-->
