<!--

	//function to escape strings
	function correctedEscape( string )
	{
	if(string)
	{
		if(typeof(encodeURIComponent)=="function")
		{
			return encodeURIComponent(string);
		}
		else
		{
			return escape(string);
		}
	}

	return string;
	}

	

//-->

