// Todd Moy// MetonymSTUDIO / MobileAdGroup// 3-12-02// elementJump(targetElement)// used to move between form elements non-sequentially & without // tabbing.function elementJump(targetElement){	if (targetElement.disabled){	targetElement.disabled = false;	}	targetElement.focus();}
