My first version of blogger custom search engine. I used simple HTML and javascript. As this is the first version, i did not use any complex scripting. Elevator: Go to blogger.com Layout -> Add a gadget Select HTML/Javascript Paste the code and save it. Code: <html> <head> <script language="javascript"> function synd(){ var URL = "http://www.google.co.in/search?q="+document.getElementById("syndrome_search_text").value; window.open(URL); } </script> </head> <body> <input type = "text" id="syndrome_search_text"> <input type = "button" id="syndrome_search_button" onclick='synd()' value="Search"> </body> </html>      Infected with Harish Syndrome