function PopulateNext(temp)
{

	var value ="";
	var text = "";
	var option;
	var select;

	select = document.getElementById("selHW");
	for(var i =0; i < arrHW.length; i++)
	{
		option = document.createElement("OPTION");
	
		value = arrHW[i].split("#")[0];
		text = arrHW[i].split("#")[1];
		
		option.value = value;
		option.text = text;
				
		select.options[select.options.length] = option;
	}
	
	select = document.getElementById("selSW");
	for(var i =0; i < arrSW.length; i++)
	{
		option = document.createElement("OPTION");
	
		value = arrSW[i].split("#")[0];
		text = arrSW[i].split("#")[1];
		
		option.value = value;
		option.text = text;
				
		select.options[select.options.length] = option;
	}
	
	select = document.getElementById("selSWv597");
	for(var i =0; i < arrSWv597.length; i++)
	{
		option = document.createElement("OPTION");
	
		value = arrSWv597[i].split("#")[0];
		text = arrSWv597[i].split("#")[1];
		
		option.value = value;
		option.text = text;
				
		select.options[select.options.length] = option;
	}
	
	select = document.getElementById("selSWv6");
	for(var i =0; i < arrSWv6.length; i++)
	{
		option = document.createElement("OPTION");
	
		value = arrSWv6[i].split("#")[0];
		text = arrSWv6[i].split("#")[1];
		
		option.value = value;
		option.text = text;
				
		select.options[select.options.length] = option;
	}
	
	select = document.getElementById("selSWv7");

	for(var i =0; i < arrSWv7.length; i++)
	{
		option = document.createElement("OPTION");
	
		value = arrSWv7[i].split("#")[0];
		text = arrSWv7[i].split("#")[1];
		
		option.value = value;
		option.text = text;
				
		select.options[select.options.length] = option;
	}
	
}

function ProductSelected(select)
{
	window.location.href="content.aspx?id=" + select.value;
}
