
var selectProducts_hw = new Array();
selectProducts_hw[0]=new Array("#", "- Solar Heating and Ventilation Solutions -", "thick");
selectProducts_hw[1]=new Array("solarsheat1000.html", "SolarSheat 1000G", "thin");
selectProducts_hw[2]=new Array("solarsheat1500G.html", "SolarSheat 1500G", "thin");
selectProducts_hw[3]=new Array("solarsheat1500GS.html", "SolarSheat 1500GS", "thin");
selectProducts_hw[4]=new Array("solution_solarsheat_pak2.html", "SolarSheat 2 Pak", "thin");
selectProducts_hw[5]=new Array("solarfurnaceretrifit.html", "Solar Furnace Retrofit", "thin");
selectProducts_hw[6]=new Array("solarsheatmultiroom.html", "SolarSheat 1500GS Multi-Room System", "thin");
selectProducts_hw[7]=new Array("solution_hrv_solarsheat1500gs.html", "Solar HRV with SolarSheat 1500GS", "thin");
selectProducts_hw[8]=new Array("zonecontrol.html", "Two Stage Zone Control System", "thin");
selectProducts_hw[9]=new Array("fanbox.html", "Fan Box", "thin");
selectProducts_hw[10]=new Array("hotwater.html", "SolarSheat Hot Water System", "thin");
selectProducts_hw[11]=new Array("solution_furnace.html", "SolarSheat Furnace", "thin");
//selectProducts_hw[9]=new Array("solarsheataccessory.html", "SolarSheat Accessory Kit", "thin");
//selectProducts_hw[10]=new Array("solarlauto3waydamper.html", "YSH Intelligent Auto 3-Way Damper", "thin");
//selectProducts_hw[11]=new Array("solarlmanualdamper.html", "YSH Manual Dampers", "thin");

var selectProducts_sah = new Array();
selectProducts_sah[0]=new Array("#", "- Solar Air Heating Solutions -", "thick");
//selectProducts_sah[1]=new Array("solarsheat1500.html", "SolarSheat 1500", "thin");
selectProducts_sah[1]=new Array("solarsheat1000.html", "SolarSheat 1000G", "thin");
selectProducts_sah[2]=new Array("solarsheat1500G.html", "SolarSheat 1500G", "thin");
selectProducts_sah[3]=new Array("solarsheat1500GS.html", "SolarSheat 1500GS", "thin");
//selectProducts_sah[4]=new Array("solarsheataccessory.html", "SolarSheat Accessory Kit", "thin");
//selectProducts_sah[5]=new Array("solarNu-Air750HRV.html", "Nu-Air Solar 750 HRV", "thin");
selectProducts_sah[4]=new Array("solarHRV200.html", "Your Solar Home HRV 200MAX Solar", "thin");
selectProducts_sah[5]=new Array("solarCAF-36-E16.html", "YSH Clean Air Furnace CAF-36", "thin");
//selectProducts_sah[7]=new Array("smartbox.html", "Your Solar Home SmartBox", "thin");
//selectProducts_sah[7]=new Array("solarlauto3waydamper.html", "YSH Intelligent Auto 3-Way Damper", "thin");
//selectProducts_sah[6]=new Array("solarlmanualdamper.html", "Your Solar Home Manual Dampers", "thin");


function displayProducts (selectedProduct)
{
  document.write ('<div id="Div1988" style="LEFT: 410px; WIDTH: 370px; POSITION: absolute; TOP: 185px; HEIGHT: 20px;" align="right">');
  document.write ('<select id="sel_products" name="sel_products" onchange="javascript:jumptoPtoduct()">');
  var s="";
  var i=0;
  for (i=0; i<selectProducts_hw.length; i++)
  {
	s='<option ';
	if (selectProducts_hw[i][0]==selectedProduct)
	s+=' selected ';
	s+=' class="'+selectProducts_hw[i][2]+'" value="'+selectProducts_hw[i][0]+'">'+selectProducts_hw[i][1]+'</option>';
	document.write (s);
  }
  
  //for (i=0; i<selectProducts_sah.length; i++)
  //{
//	s='<option ';
//	if (selectProducts_sah[i][0]==selectedProduct)
//	s+=' selected ';
//	s+=' class="'+selectProducts_sah[i][2]+'" value="'+selectProducts_sah[i][0]+'">'+selectProducts_sah[i][1]+'</option>';
//	document.write (s);
//  }
  
  document.write ('</select></div>');
}



function displaySAH ()

{

document.write ('<select id="sel_products" name="sel_products" onchange="javascript:jumptoPtoduct()">');
  var s="";
  var i=0;
  
  document.write ('<option class="thin" value="#" selected>--- All Products ---</option>');
  for (i=1; i<selectProducts_sah.length; i++)
  {
	s='<option ';
	
	s+=' class="'+selectProducts_sah[i][2]+'" value="'+selectProducts_sah[i][0]+'">'+selectProducts_sah[i][1]+'</option>';
	document.write (s);
  }
  
  document.write ('</select>');
}

function displayHW ()

{

document.write ('<select id="sel_products1" name="sel_products1" onchange="javascript:jumptoPtoduct1()">');
  var s="";
  var i=0;
  
  document.write ('<option class="thin" value="#" selected>--- All Products ---</option>');
  for (i=1; i<selectProducts_hw.length; i++)
  {
	s='<option ';
	
	s+=' class="'+selectProducts_hw[i][2]+'" value="'+selectProducts_hw[i][0]+'">'+selectProducts_hw[i][1]+'</option>';
	document.write (s);
  }
  
  document.write ('</select>');
}

		