I think i have this working so that it doesn't require JS anymore.
This removes the countdown timer completly.
Code:
$stylevar[htmldoctype]
<html dir="$stylevar[textdirection]" lang="$stylevar[languagecode]">
<head>
$headinclude
<title>$vboptions[bbtitle] - $vbphrase[cybfrules]</title>
<if condition="(!$cfrulesagreed AND $cfrshowaccform)">
<script language="JavaScript" type="text/javascript">
function Cafr_checkAgree(form) {
if (form.cafr_agree.checked)
{
form.submit();
}
else
{
alert("$vbphrase[cybfrules_not_agreed]");
}
}
<if condition="($vboptions[cybfrules_time]!='')">
var cyb_ms = 0;
var cyb_s = $cyb_counter_time;
function Cafr_buttonCounter() {
cfrules_counter = fetch_object('cfrules_counter');
if (cyb_ms <= 0)
{
cyb_ms = 9;
cyb_s -= 1;
}
if (cyb_s <= -1)
{
cyb_ms = 0;
cyb_s += 1;
cfrules_counter.disabled = false;
cfrules_counter.value = "$vbphrase[submit]";
} else {
cyb_ms -= 1;
cfrules_counter.disabled = true;
cfrules_counter.value = cyb_s + "." + cyb_ms;
setTimeout("Cafr_buttonCounter()", 100);
}
}
</if>
</script>
</if>
</head>
<body <if condition="(!$cfrulesagreed AND $cfrshowaccform)">onload="Cafr_buttonCounter();"</if>>
$header
$navbar
<if condition="(!$cfrulesagreed AND $cfrshowaccform)">
<form action="misc.php?do=cfrulesagree" name="agree_cfrules" id="agree_cfrules" method="post" onsubmit="return false;">
<input type="hidden" name="securitytoken" value="$cybfr_sectok" />
</if>
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="tcat" align="$stylevar[left]"><if condition="($bbuserinfo[usergroupid]==6)"><a class="smallfont" style="float:$stylevar[right]" href="$admincpdir/options.php?do=options&dogroup=cfrules#editrules" title="$vbphrase[cybfrules_edit]" accesskey="E" target="_blank">$vbphrase[cybfrules_edit]</a></if>$vbphrase[cybfrules]</td>
</tr>
<if condition="(!$cfrulesagreed AND $cfrshowaccform)">
<tr>
<td class="alt1" align="center" valign="middle" style="background-color:#DEF3BD;color:black;"><phrase 1="$bbuserinfo[username]">$vbphrase[cybfrules_agree_note]</phrase></td>
</tr>
</if>
<if condition="($vboptions['cybfrules_note1']!='')">
<tr>
<td class="panelsurround" align="center">
<div class="panel" align="$stylevar[left]">
<table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0" width="100%">
<tr>
<td class="smallfont" align="$stylevar[left]">
$vboptions[cybfrules_note1]
</td>
</tr>
</table>
</div>
</td>
</tr>
</if>
<tr>
<td class="panelsurround" align="center">
<div class="panel" align="$stylevar[left]">
<table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0" width="100%">
<tr>
<td class="smallfont" align="$stylevar[left]">
$vboptions[cybfrules_rules]
</td>
</tr>
</table>
</div>
</td>
</tr>
<if condition="($vboptions['cybfrules_note2']!='')">
<tr>
<td class="panelsurround" align="center">
<div class="panel" align="$stylevar[left]">
<table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0" width="100%">
<tr>
<td class="smallfont" align="$stylevar[left]">
$vboptions[cybfrules_note2]
</td>
</tr>
</table>
</div>
</td>
</tr>
</if>
<if condition="(!$cfrulesagreed AND $cfrshowaccform)">
<tr>
<td class="alt1" align="center" valign="middle" style="background-color:#DEF3BD;color:black;"><input type="checkbox" name="cafr_agree" value="1" /> <phrase 1="$vboptions[bbtitle]">$vbphrase[cybfrules_iagree_note]</phrase> <input type="submit" class="button" style="width:80px;" value="$vbphrase[submit]" onclick="Cafr_checkAgree(this.form);" /></td>
</tr>
</if>
</table>
<if condition="(!$cfrulesagreed AND $cfrshowaccform)">
</form>
</if>
<br />
$footer
</body>
</html>