Line 32:
replace
Code:
splashmessage[2]='a great code indeed!
with
Code:
splashmessage[2]='a great code indeed!'
You were missing a closing '.
But wait! There's more:
Replace
Code:
sc_cross.style.left=ns6?parseInt(window.pageXOffse t)+parseInt(window.innerWidth)/2-parseInt(sc_cross.style.width)/2 : document.body.scrollLeft+document.body.clientWidth /2-parseInt(sc_cross.style.width)/2
, on line 59, with:
Code:
sc_cross.style.left=ns6?parseInt(window.pageXOffse t)+parseInt(window.innerWidth)/2-parseInt(sc_cross.style.width)/2 : document.body.scrollLeft+document.body.clientWidth /2-parseInt(sc_cross.style.width)/2
.
Now it works fine.