function populate(o) {
  d=document.getElementById('List02');
  if(!d){return;}                 
  var mitems=new Array();
  mitems['Choose']=[''];
  
  mitems['Hardness']=['Select Item','011','012','013'];
  mitems['Tensile']=['Select Item','021','022','023'];
  mitems['Impact']=['Select Item','031','032','033'];
  mitems['Torsion']=['Select Item','041','042','043'];
  mitems['Fatigue']=['Select Item','051','052','053'];
  mitems['Universal']=['Select Item','Quasar 2.5','Quasar 5','Quasar 10','Quasar 25','Quasar 50','Quasar 100','Quasar 250','Quasar 600'];
  mitems['Compression']=['Select Item','071','072','073'];
  mitems['Cupping']=['Select Item','081','082','083'];
  mitems['Balancing']=['Select Item','091','092','093'];
  mitems['Spring']=['Select Item','101','102','103'];

  d.options.length=0;
  cur=mitems[o.options[o.selectedIndex].value];
  if(!cur){return;}
  d.options.length=cur.length;
  for(var i=0;i<cur.length;i++) {
    d.options[i].text=cur[i];
    d.options[i].value=cur[i];
  }
}

function gotoPage() {
	d=document.getElementById('List02');
	if(!d){return;}      
	else {
//-
		if(d.options[d.selectedIndex].value == '011')
		 	window.location.href = 'index.html';
//-
		else if (d.options[d.selectedIndex].value == '021')
		 	window.location.href = 'index.html';
//-	
		else if (d.options[d.selectedIndex].value == '031')
		 	window.location.href = 'index.html';
//-
		else if (d.options[d.selectedIndex].value == ' Testing Machine')
		 	window.location.href = 'index.html';
//-
		else if (d.options[d.selectedIndex].value == 'Torsion Testing Machine')
		 	window.location.href = 'index.html';
//-
		else if (d.options[d.selectedIndex].value == 'Fatigue Testing Machine')
		 	window.location.href = 'index.html';
//-			
		else if (d.options[d.selectedIndex].value == 'Quasar 2.5')
		 	window.location.href = 'images/quasar_2.5.pdf';
		else if (d.options[d.selectedIndex].value == 'Quasar 5')
		 	window.location.href = 'images/quasar_5.pdf';
		else if (d.options[d.selectedIndex].value == 'Quasar 10')
		 	window.location.href = 'images/quasar_10.pdf';
		else if (d.options[d.selectedIndex].value == 'Quasar 25')
		 	window.location.href = 'images/quasar_25.pdf';
		else if (d.options[d.selectedIndex].value == 'Quasar 50')
		 	window.location.href = 'images/quasar_50.pdf';
		else if (d.options[d.selectedIndex].value == 'Quasar 100')
		 	window.location.href = 'images/quasar_100.pdf';
		else if (d.options[d.selectedIndex].value == 'Quasar 250')
		 	window.location.href = 'images/quasar_250.pdf';
		else if (d.options[d.selectedIndex].value == 'Quasar 600')
		 	window.location.href = 'images/quasar_600.pdf';
//-
		else if (d.options[d.selectedIndex].value == 'Compression Testing Machine')
		 	window.location.href = 'product/material/1307.html';	
//-
		else if (d.options[d.selectedIndex].value == 'Cupping Testing Machine')
		 	window.location.href = 'product/material/1308.html';	
//-
		else if (d.options[d.selectedIndex].value == 'Balancing Testing Machine')
		 	window.location.href = 'product/material/1309.html';	
//-
		else if (d.options[d.selectedIndex].value == 'Spring Testing Machine')
		 	window.location.href = 'product/material/1310.html';

	 }
}