You're misuing functions (in specific the OnEvent_Timer one). There is only meant to be one instance of OnEvent_Timer in your code which accepts the id of the timer as its parameter:
code:
function OnEvent_Timer(strId)
{
switch(strId)
{
case "UnBlocker":
.....
return;
case "ResetAll":
.....
return;
}
}