function dropdown(a){var b,c;c=a.options[a.selectedIndex].value;if(c){if(a.form.target)b=parent[a.form.target];else b=window;if(!b)return true;b.location=c}return false}

var a=document.getElementsByTagName("a");
for(var i=0;i<a.length;i++)
{
    a[i].onclick=function()
    {
        window.location=this.getAttribute("href");
        return false
    }
}
