<!-- hiding
function getListValue(list) 
{ 
 var listValue = ""; 
 listValue =  (list.selectedIndex == -1) ? -1 :
  listValue = list.options[list.selectedIndex].value; 
 return (listValue); 
}

function goAuth()
{
 var val1 = 0;
 val1 = getListValue(eval("document.forms[0].authors"));
 window.location.href = val1;
}

function goNum()
{
 var val2 = 0;

 val2 = getListValue(eval("document.forms[1].numbers"));
 if (val2 == "") {alert("Не выбран номер");} 
 else {window.location.href = val2;}
}

// End of hiding -->

