/*
  Copyright (c) 2003 University of Victoria
	Version 1.1
*/

/* Menu - Quick Links Bar */

function chooseActivity() {
  if ( document.menu.dropmenu.selectedIndex == 0 )
{
 // do nothing
}
else {
  selectedIndex = document.menu.dropmenu.selectedIndex; 

// get value of the selected option
  goPage = document.menu.dropmenu.options[selectedIndex].value;

// redirect browser to the value (page)
  document.location.href=goPage;
//  parent.main.focus();
//	parent.frames["main"].focus();
//  ( top.frames['content'].location=options[selectedIndex].value ) 
  }
}

function resetSelect()  {
  document.menu.dropmenu.selectedIndex = 0;
}


//-->

