/*
	Change Log
	
	Date		Programmer		Project/Cont	Description
	----- 		----------		------------	-----------		 
	01/06/2006	S.Courtemarsh	w00801317		Copied from CFAjax website as is except that the setting of _cfscriptLocation was
												commented out.  The variable is set in the calling page instead for more flexibility.	
*/
//_cfscriptLocation = "http://sli73359/unitrin/webendt/core/functions.cfm";

function errorHandler(message)
{
	alert("errorHandler" + message);
	$('disabledZone').style.visibility = 'hidden';
    if (typeof message == "object" && message.name == "Error" && message.description)
    {
        alert("Error: " + message.description);
    }
    else
    {
        alert(message);
    }
};