/*
for the script location of functions, use this general format
_cf<application name>ScriptLocation = "<location of functions file>";
ex.
_cfROEScriptLocation = "/remote_orders/functions.cfm";

*/


_cfTestSearchFunctions = "./functions.cfm";

function errorHandler(message)
{
	$('disabledZone').style.visibility = 'hidden';
    if (typeof message == "object" && message.name == "Error" && message.description)
    {
        alert("Error: " + message.description);
    }
    else
    {
        alert(message);
    }
};
