// (c) Tapio Nurminen, tietokannat.fi

function openurl(dropdown, path)
{
    num = dropdown.options[dropdown.selectedIndex].value;
      
    if (num == 0)
    {
        alert("Valitse haluamasi lehti."); 
    }
    else
    {
        newurl = path+num;
        window.location.href = newurl; 
    } 
} 
