function populate_products() {
	var actionLocation;
	var hiddenLocation;
		
	if( document.select_product_list.select_product.options[document.select_product_list.select_product.selectedIndex].value != null
		&& document.select_product_list.select_product.options[document.select_product_list.select_product.selectedIndex].value != "") {
		
		var sURL = document.select_product_list.select_product.options[document.select_product_list.select_product.selectedIndex].value; 
		if(sURL.indexOf("newwindow") > -1) {
			sURL = sURL.substring(0,sURL.indexOf("&newwindow"));
			Javascript:open_window2(sURL,'window','screenX=0,screenY=0,left=50,top=50,toolbar=1,resizable=1,location=1,directories=1,status=1,menubar=1,scrollbars=1,width=800,height=600');	
		}
		else {
			document.select_product_list.action=sURL;
			document.select_product_list.submit();
		}
	}
}

function populate_solutions() {
	var actionLocation;
	var hiddenLocation;
		
	if(document.select_solution_list.select_solution.options[document.select_solution_list.select_solution.selectedIndex].value != null
		&& document.select_solution_list.select_solution.options[document.select_solution_list.select_solution.selectedIndex].value != "") {
			
		document.select_solution_list.action=document.select_solution_list.select_solution.options[document.select_solution_list.select_solution.selectedIndex].value;
		document.select_solution_list.submit();
	}
}

