// JavaScript Document
document.write('<form action="/Mty_research.asp" method="post" name="searchform" id="searchform" >')
document.write('<div class="p_nav">MTY服裝批發搜索')
document.write('<input value="1" type="radio" name="radiobuttonPrice" /> 20元內')
document.write('<input value="2" type="radio" name="radiobuttonPrice" /> 20-40')
document.write('<input value="3" type="radio" name="radiobuttonPrice" /> 40-70')
document.write('<input value="4" type="radio" name="radiobuttonPrice" /> 70-120')
document.write('<input value="5" type="radio" name="radiobuttonPrice" /> 120以上')
document.write('<input class="input"  value="" size="8" name="searchkey" />')
document.write('<select name="action">')
document.write(' <option value="5">商品編號</option>')
document.write(' <option value="1"  selected="selected"  >商品名稱</option>')
document.write('</select>')
document.write('<input class="bottom" value=" 查 詢 " type="submit" name="submit22" onclick="return check()">')
document.write('</div>')
document.write('</form>')
function check()
{

   if(checkspace(document.searchform.searchkey.value !='請輸入關鍵字'))  {
	document.searchform.searchkey.focus();
	alert("請輸入查詢關鍵字！");
	return false;
  }
  if(checkspace(document.searchform.searchkey.value))  {
	document.searchform.searchkey.focus();
	alert("請輸入查詢關鍵字！");
	return false;
  }
   //document.searchform.submit();
 window.location='/Mty_research.asp?searchkey='+document.searchform.searchkey.value
}
function checkspace(checkstr) {
  var str = '';
  for(i = 0; i < checkstr.length; i++) {
    str = str + ' ';
  }
  return (str == checkstr);

}
