<!-- Hide the script from old browsers --
function surfto(form) {
       var myindex=form.dest.selectedIndex
       window.open(form.dest.options[myindex].value, 
         target="_self");
}
// -->

function toggle(thisname) {
tr=document.getElementsByTagName('tr')
for (i=0;i<tr.length;i++){
if (tr[i].getAttribute(thisname)){
if ( tr[i].style.display=='none' ){

tr[i].style.display = '';
}
else {
tr[i].style.display = 'none';
}
}
}
}