/* JavaScript produced by Xenon Design */

/* You may adapt and learn from the elements of this JavaScript to use in your own projects,
but you may not copy the design (the unique combination of images, colors, sizes,
typography, and positioning) since this is copyright of Xenon Design and may not be
reproduced. */

function dropdown(userSelection)
{
var userWindow, userValue;
userValue = userSelection.options[userSelection.selectedIndex].value;
if(userValue)
   {
   if(userSelection.form.target)userWindow = parent[userSelection.form.target];
   else userWindow = window;
   if (! userWindow) return true;
   userWindow.location = userValue;
   }
return false;
}
