// --------------------------------------------------------------------
// Javascript function to redirect to list of participants
// of a given workshop.
//
// 2004-02-06 Ole Husby, BIBSYS
// --------------------------------------------------------------------


//
// --------------------------------------------------------------------
// part(): redirect to list of participants
// --------------------------------------------------------------------
//

function part(wno)
{
// var txt = "Link to list of participants in workshop " + wno + " will come here";
// alert(txt);

   var BASEURL = "http://konferanse.revio.no/participants.aspx?conf=2&evn=";
   var wurl = BASEURL + wno;
   top.location.href = wurl;

}

