// JavaScript Document
function IsNumeric(issn)
{
	var PNum = new String(issn);
	var regex = /[^0-9\-xX]/;
	return !regex.test(PNum);
}