<script language="JavaScript">
<!--
var TimeRemaining;
var Timer;
TimeRemaining = 30
Timer = setTimeout("countdown()", 1000);
function countdown()
{
TimeRemaining--;
document.submitform.submitbutton.value = "submit (remaining time: " + TimeRemaining + " seconds)";
if (TimeRemaining > 0)
Timer = setTimeout("countdown()", 1000);
else
{
document.submitform.submitbutton.value = "- - - - - - - - - - - - - - - - too late - - - - - - - - - - - - - - - -";
alert("Sorry, it's too late
}
}
// -->
</script>
Now change this - if (TimeRemaining > 0)
Change 0 to about -999999999999999999999. Now you have 999999999999999999999 bonus seconds! Hope that works. I think it works with opera browser even if in comment it says its useless to edit javascript. Im always using opera for hackthissite. (THIS IS NOT AN ADVERTISEMENT!!!!! rly its not






