<!--
/*function for switching the action attribute of a form*/
function changeFrmAction( oFrm, sFrmAction ){
	oFrm.setAttribute( "action", sFrmAction, true );	
}

/*function for allowing user to tab-through a field (such as a button) that has an onkeypress/onkeydown event handler*/
function allowTabThrough( key ){
	if( key == 9 || key == 16 ){ return true; }
	else{ return false; }
}
//-->
