/**
 * @author Nguyen Ngoc Minh
 */

function search(path){
	var search_name = document.getElementById("search_name").value;
	var search_production = document.getElementById("search_production").value;
	var search_type = document.getElementById("search_type").value;
	var price1 = document.getElementById("price_1").value;
	var price2 = document.getElementById("price_2").value;
	
	var strlink = '?view=search';
	
	if (search_name != '') {
		strlink += '&name=' + search_name;
	}
	
	if (search_production != '') {
		strlink += '&sproduction=' + search_production;
	}
	
	if (search_type != 1) {
		strlink += '&type=' + search_type;
	}
	
	if (price1 != '') {
		strlink += '&price1=' + price1;
	}
	
	if (price2 != '') {
		strlink += '&price2=' + price2;
	}
	
	if (search_name == '' && search_production == '' && search_type == 1 && price1 == '' && price2 == '') {
		alert('Bạn chưa chọn nội dung cần tìm!');
		return false;
	} else {
		window.location = path + strlink;
	}
	
}

