I have a set of links based on javascript events. I am using this command to open them;
//<![CDATA[
function HideandUNhideObj(ThisObj){
nav=document.getElementById(ThisObj).style
if(nav.display=="none"){
nav.display='block';
}else{
nav.display='none';
}
}
//]]>
How can I incorporate this into the template? I tried adding it like a regular html page jsut before the closing head tag but it really screwed things up.
|