function DropDownMenu(entered)
{
// ********************************* 
// DROP DOWN MENU (c) Henrik Petersen / NetKontoret 1998 - All rights reserved 
// Explained along with other useful scripts at: http://www.echoecho.com/javascript.htm
// You may freely use this script as long as you do not remove this line and the 2 lines above.
// ****************************************** 
with (entered)
{
// Store the selected option in a variable called ref
ref=options[selectedIndex].value; 
// Count the position of the optional &
splitcharacter=ref.lastIndexOf('&'); 

// The three lines below checks if a target goes along with the URL 
// That is: (if a '&' is in the option-value).
// If so, the URL is stored in a variable called loc and the target
// is stored in a variable called target.
// If not the URL is stored in a variable called loc and '_self' is
// stored in the variable called target.
if (splitcharacter!=-1) {loc=ref.substring(0,splitcharacter); target=ref.substring(splitcharacter+1,1000).toLowerCase();}
else {loc=ref; target='_self';};

// create a varible called lowloc to store loc in lowercase characters.
lowloc=loc.toLowerCase(); 

// Skip the rest of this function if the selected optionvalue is 'false'.
if (lowloc=='false') {return;} 

// Open link in current document
if (target=='_self') {document.location=loc;}

// Cancel eventual framesets and open link in current window
else {if (target=='_top') {top.location=loc;} 

// Open link in new window
else {if (target=='_blank') {window.open(loc);} 

// Open link in parent frame
else{if (target=='_parent') {parent.location=loc;} 

// Open link in the specified frame
else {parent.frames[target].location=loc;}; 
}}}}
}

function MM_swapImgRestore() { //v3.0
  var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}

function MM_swapImage() { //v3.0
  var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
   if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}

function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}

