/*#############################################################################

FILE:	AG/fieldToUpper.js

	Copyright (c) 2006 Navitaire Inc. All rights reserved.

	This source code is (i) proprietary to and a trade secret of Navitaire Inc.
	and (ii) protected by copyright law and international treaties.
	Unauthorized disclosure, reproduction, distribution or alteration of this
	source code, or any portion of it, may result in severe civil and criminal
	penalties and will be prosecuted to the maximum extent possible under
	the law.

	www.navitaire.com

DESCRIPTION:
	Creates and returns a string containing the javascript function used to uppercase
	a textfield entry.


#############################################################################*/

function fieldToUpper( inputField )
{
        var str = inputField.value
        str = str.toUpperCase()
        inputField.value = str     
}
