<!--
function check()
{
   if(checkspace(document.searchform.searchkey.value !='Please input the keywords!'))  {
	document.searchform.searchkey.focus();
	alert("Please input the query keywords!");
	return false;
  }
  if(checkspace(document.searchform.searchkey.value))  {
	document.searchform.searchkey.focus();
	alert("Please input the query keywords!");
	return false;
  }
   document.searchform.submit();
}
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
function checkspace(checkstr) {
  var str = '';
  for(i = 0; i < checkstr.length; i++) {
    str = str + ' ';
  }
  return (str == checkstr);
}
//-->

<!-- 
function OpenWindowSearchPro(htmurl)
{

if (document.formSearchPro.Keyword.value == "" || document.formSearchPro.Keyword.value == "Input keyword here" )
{
alert ("Please input one keyword. Thanks.");
document.formSearchPro.Keyword.focus();
return false;
}

  return true;
}

//-->

<!--
  function checkuu()
{
    if(checkspace(document.loginfo.username.value)) {
	document.loginfo.username.focus();
    alert("Plese input your name!");
	return false;
  }
    if(checkspace(document.loginfo.password.value)) {
	document.loginfo.password.focus();
    alert("Plese input your password!");
	return false;
  }
	
  }

//-->
