function go_url(waarde)
{
if (waarde != 'unknown')
   {
   parent.content.location.href='../'+waarde;
   }
}

targetvalue = new Array();
targetvalue[0]='...................................';
targetvalue[1]='Refined Atrial Pacing ';
targetvalue[2]='Stored EGM ';
targetvalue[3]='Selected Episodes Diary ';
targetvalue[4]='Refined Ventricular Pacing ';
targetvalue[5]='Rate response ';
targetvalue[6]='Beat-to-Beat mode switching ';
targetvalue[7]='AF diagnostics ';
targetvalue[8]='AF prevention therapies ';
targetvalue[9]='Ventricular Rate Stabilization ';
targetvalue[10]='Special therapies for children and the young and active ';
targetvalue[11]='Sudden rate drop intervention ';
targetvalue[12]='AV delay management ';
targetvalue[13]='Beat-to-Beat synchrony ';
targetvalue[14]='IEGM ';
targetvalue[15]='Therapy Advisor ';




targetpage = new Array();
targetpage[0]='unknown';
targetpage[1]='3_2_solutions/3_2_13.htm';
targetpage[2]='3_2_solutions/3_2_14.htm';
targetpage[3]='3_2_solutions/3_2_15.htm';
targetpage[4]='3_2_solutions/3_2_12.htm';
targetpage[5]='3_2_solutions/3_2_1.htm';
targetpage[6]='3_2_solutions/3_2_2.htm';
targetpage[7]='3_2_solutions/3_2_3.htm';
targetpage[8]='3_2_solutions/3_2_4.htm';
targetpage[9]='3_2_solutions/3_2_8.htm';
targetpage[10]='3_2_solutions/3_2_5.htm';
targetpage[11]='3_2_solutions/3_2_6.htm';
targetpage[12]='3_2_solutions/3_2_7.htm';
targetpage[13]='3_2_solutions/3_2_9.htm';
targetpage[14]='3_2_solutions/3_2_10.htm';
targetpage[15]='3_2_solutions/3_2_11.htm';



sel=0;
optionwalker=1;
while (optionwalker <= 15)
  {
  loc = new String(window.location);
  if (loc.indexOf(targetpage[optionwalker]) >= 0)
      {
      sel++;
      }
  optionwalker++;
  }

document.write("<form name='form2'><select class='dropdownbox' onchange='go_url(this.options[this.selectedIndex].value)'>");
if (sel == 0)
    {
    document.write("<option selected value='unknown'>Please make a choice</option>");
    }

optionwalker=1;
while (optionwalker <= 15)
  {
  loc = new String(window.location);
  if (loc.indexOf(targetpage[optionwalker]) >= 0)
      {
      document.write('<option selected value=\''+targetpage[optionwalker]+'\'>'+targetvalue[optionwalker]+'</option>');	  
      }
  else  
      {
      document.write('<option value=\''+targetpage[optionwalker]+'\'>'+targetvalue[optionwalker]+'</option>');	  
      }
  optionwalker++;
  }
document.write("</select>&nbsp;&nbsp;&nbsp;<span class=\"subtitle\">Solution Quickfinder</span></form>");









