function populate(o) {
  d=document.getElementById('List02');
  if(!d){return;}                 
  var mitems=new Array();
  mitems['Choose']=[''];
  
  mitems['Dilatometer']=['Select Item','L76 Economy Dilatometer series','L75H Research Dilatometer series','L75V Research Dilatometer series','L75Q Quattro Dilatometer','L75/Laser Highest Precision Laser Dilatometer','L78/RITA Quenching Dilatometer L78 RITA','L75/120LT 8 samples Plastic Dilatometer'];
  mitems['Simultaneous']=['Select Item','LINSEIS STA PT1000','LINSEIS STA PT1600','L81/1550 Research Balance','Thermal balance L81 / II'];
  mitems['DSC']=['Select Item','DSC/HSDC, DTA, TMA, DMA, MS-FTIR'];
  mitems['Thermal']=['Select Item','Standard Laser Flash Thermal Constants Analyzer TC 7000'];

  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 == 'L76 Economy Dilatometer series')
		 	window.location.href = 'images/L76.pdf';
		else if(d.options[d.selectedIndex].value == 'L75H Research Dilatometer series')
		 	window.location.href = 'images/L75_H.pdf';
		else if(d.options[d.selectedIndex].value == 'L75V Research Dilatometer series')
		 	window.location.href = 'images/L75_V.pdf';
		else if(d.options[d.selectedIndex].value == 'L75Q Quattro Dilatometer')
		 	window.location.href = 'images/L75_Q.pdf';
		else if(d.options[d.selectedIndex].value == 'L75/Laser Highest Precision Laser Dilatometer')
		 	window.location.href = 'images/L75_LASER.pdf';
		else if(d.options[d.selectedIndex].value == 'L78/RITA Quenching Dilatometer L78 RITA')
		 	window.location.href = 'images/L78_RITA.pdf';
		else if(d.options[d.selectedIndex].value == 'L75/120LT 8 samples Plastic Dilatometer')
		 	window.location.href = 'images/L75_120.pdf';
//-
		else if (d.options[d.selectedIndex].value == 'LINSEIS STA PT1000')
		 	window.location.href = 'images/STA_TG_PT1000';
		else if (d.options[d.selectedIndex].value == 'LINSEIS STA PT1600')
		 	window.location.href = 'images/STA_TG_PT1600';
		else if (d.options[d.selectedIndex].value == 'L81/1550 Research Balance')
		 	window.location.href = 'images/STA_L81-I.zip';
		else if (d.options[d.selectedIndex].value == 'Thermal balance L81 / II')
		 	window.location.href = 'images/STA_L81_II';
//-	
		else if (d.options[d.selectedIndex].value == 'DSC/HSDC, DTA, TMA, DMA, MS-FTIR')
		 	window.location.href = '03.html';
//-
		else if (d.options[d.selectedIndex].value == 'Standard Laser Flash Thermal Constants Analyzer TC 7000')
		 	window.location.href = '04.html';
	 }
}