﻿var inValue; var cate ;
function submitform(){inValue = document.getElementById("inputkey").value;cate = document.getElementById("cbocate").value; 
if(inValue == 'Nhập từ khóa tìm kiếm' && cate == 0 || inValue.length == 0 && cate == 0){alert('Vui lòng nhập điều kiện tìm kiếm'); return false;} 
else{if(inValue == 'Nhập từ khóa tìm kiếm' || inValue.length == 0 ){inValue = '';}inValue = inValue.replace(/\s/g, '+');window.location = '/search.html?cate=' + cate + '&key=' + inValue ;}}

