New to JavaScript here - I copied some script from a site, and there is an error in it. Can someone please let me know what is wrong with this code? First error: Expected "(" This occurs at the bolded line. Second Error: object expected This occurs at the red line, after I click the button. I do apologize for the newbie question, but have checked various sources on the net and haven't found any help. (If you can recommend any really good ones, it would be appreciated)<br> <br>Thanks for any help <br><br><br><SCRIPT><br><!--<br><b>var c=15</b><br>document.go.timer.value="15"<br>function count()<br>{<br> if c = 0 <br> alert("Time is up"<br> window.location="saveanswers.asp"<br> end if<br><br> document.go.timer.value=c<br><br> c=c-1<br> <br> setTimeout("count()",1000)<br>}<br><font color=red>//--></font><br></SCRIPT><br> <br><form name="go"><input type="text" name="timer" size="12"><input type="button" value="Start" <br>onClick="count()"><br></form><br>