function isValidPhoneNumber(thisField) {
    for (var i = 0; i < thisField.value.length; i++) {
        var ch = thisField.value.substring(i, i + 1);
        if (!(( ch >= "0" && ch <= "9") || (ch=="-"))) {
			alert("Only Numbers(seperated by -) are allowed.");
			thisField.value="";
			thisField.focus();
        }
    }
}



/*onBlur="isValidPhoneNumber(this)"*/
