this.goto_link_select=function(a1)
{
if(a1)
{
var b1=a1.options[a1.options.selectedIndex].getAttribute("value");
var b2=a1.options[a1.options.selectedIndex].getAttribute("em");
if(b1)
{
if(b2=="_self")
{
document.location.href=b1;
}
if(b2=="_blank")
{
window.open(b1);
}
}
a1.options[0].selected=true;
}
}
