function clickButton() 
      {     
       if (event.keyCode == 13) 
       {      
        document.all('button').click();
         return false;
       }
     }

function  CheckWords()
{
   var v=document.getElementById("search_input");
   if (trim(v.value).length<=0 || trim(v.value)=="ÇëÊäÈëËÑË÷¹Ø¼ü´Ê"|| trim(v.value)=="")
   {
	 alert("ÇëÊäÈëËÑË÷¹Ø¼ü´Ê£¡");
	 v.focus();
	 return false;
   }
   else
   {
     location.href="search.aspx?keywords="+v.value;
   }
}
 
 function trim(value){
	var re=/^\s|\s$/gi;
	return value.replace(re,"");
}

function Clear()
{
	var v=document.getElementById("search_input");
    v.value="";
}

function setValue(value){
	var v=document.getElementById("search_input");
						if(v.value !=null && value!=""){
							v.value=value;
						}
					}
