+1  A: 

Instead of this:

<script type="text/jscript">

You should have this (if you want it to work cross-browser):

<script type="text/javascript">

jscript is the IE implmentation of JavaScript, though some browsers will run that MIME type of script block (IE/Chrome/Opera, maybe others)....Firefox isn't one of them :) text/javascript will run for all browsers.

Nick Craver