addCustomEventHandler("Start Counting", function() {
var l11b3c18 = function() {
if (getCustomProperty("SecondsLeft") >= 0 && getCustomProperty("Stopped") == 0) {
if (CheckBox_getSelected("CheckBox_Count_Down") == true) {
TextBox_setText("TextBox_Timing", "" + getCustomProperty("SecondsLeft") + "");

} else {
TextBox_setText("TextBox_Timing", "" + getCustomProperty("SecondsCounted") + "");

}setCustomProperty("SecondsLeft", getCustomProperty("SecondsLeft")-1);
setCustomProperty("SecondsCounted", getCustomProperty("SecondsCounted")+1);
if (getCustomProperty("SecondsLeft") < 0 || getCustomProperty("Stopped") == 1) {
goToPage(1);

} else {

}
setTimeout(l11b3c18, 1000);
}
};
l11b3c18.call();
});
