Javascript Numeric Only TextBox Validation

function NumericOnly()
{
var key = window.event.keyCode;

if ( (key > 47 && key < 58) )
return;
else
// If it was not, then dispose the key and continue with entry
window.event.returnValue = null;
}

—————————————————————————-

Call This numeric Function On TextBox on KeyPress Event

OnKeyPress=”NumericOnly()”