/* 	RippleFX Copyright 2002 */
/*--------------------------------------------------------------------------
File:		order.js
Author:		Tim Tomanik

Purpose:	This file provides script services for /order.asp
			
Version:	1.00

Dependant:	Requires the rfx_detect library to have been initialized.

Updates
Dec 11, 2002 Tim Tomanik		Completed initial version						
						
-----------------------------------------------------------------------------*/

function ForceNumeric(e) {
	var keycode;
	var result = false;
	
	if (window.event) 
		keycode = window.event.keyCode;
	else if (e) 
		keycode = e.which;
	else 
		result = true;
	if (((keycode>47) && (keycode<58) )  || (keycode==8)) { 
		result = true; 
	} 
	if(result)
		Mtimer=setTimeout("CalculateTotal()", 10);
		
	return result;
}



