/*********************************************************************************

 * Module: wb_ie5.js

 *		Web Browser specific utilities.

 *		This module includes functions that are specific to Internet Explorer

 *		version 5 or greater.  This file is only included if the browser is

 *		detected as being the appropriate version.  If the browser is IE4, then

 *		wb_ie4.js will be used instead.

 *********************************************************************************/





/*********************************************************************************

 * Object: WEBBROWSER

 *		Functions that are specific to a version of the web browser.

 */

 

var WEBBROWSER = {



	/**

	 *	Use this function instead of eval()

	 */

	// t: additional conversion type

	//		1 - Unescape commas and semicolons.  Used for storing input values as objects.

	eval: function(s,t) {

		if (!s) return s;

		if (t == 1) s = s.replace(/\\054/g,",").replace(/\\073/g,";")

		var v = {};

		// IE4 version; overridden below for IE5:

		eval("v="+s);

		return v;

	}

}


