Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<script language="JavaScript">
var timerID = 0;
var gseconds = 0;
function UpdateTimer() {
gseconds += 1;
timerID = clearTimeout(timerID);
document.AXConfirm.theTime.value = gseconds;
Start();
}
function Start() {
document.getElementById("ConfirmButton").disabled = true;
tStart = new Date();
timerID = setTimeout("UpdateTimer()", 10);
}
function Stop() {
document.getElementById("ConfirmButton").disabled = true;
if(timerID) {
clearTimeout(timerID);
timerID = 0;
}
}
function Reset() {
document.getElementById("ConfirmButton").disabled = true;
document.AXConfirm.theTime.value = "0";
clearTimeout(timerID);
timerID = 0;
gseconds = 0;
}
</script>
<script>
UpdateTimer();
</script>
<FORM action="index.cfm" name="AXConfirm">
<input type="text" name="theTime">
<input type="hidden" name="AllocatedTo" value="#EIN#">
<input type="hidden" name="Allocate" value="#Generate.NewAX#">
<input type="Button" name="Confirm" value="Confirm" style="color: White; background-color: Green;">
<input type="Submit" name="Reject" value="Reject" style="color: White; background-color: Red;">
</FORM>