Im trying to use the code below on my header, to disable the link details from status bar but i get an error. on the page when i reload to see if it works.
Code:
<script>

//Hide status bar msg II script- by javascriptkit.com
//Visit JavaScript Kit (http://javascriptkit.com) for script
//Credit must stay intact for use

function hidestatus(){
window.status=''
return true
}

if (document.layers)
document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT)

document.onmouseover=hidestatus
document.onmouseout=hidestatus
</script>
Fatal error: Smarty error: [in header.tpl line 16]: syntax error: unrecognized tag: window.status='' return true (Smarty_Compiler.class.php, line 446) in /home/chiqflix/public_html/include/smarty/libs/Smarty.class.php on line 1095
Is there a way i can add this without getting this error?