function Goonkeydown(e)                 
{
        e=e||event;
	
        if(e.keyCode==13)
        {
               var title=document.getElementById("title").value;
			   if(title==''){
			   return false;
			   }
			   window.location.href="index/search.php?title="+title;                               
        }
}
