window.onload = function ()
{

var styleclass_q = document.Form0.q.className;

document.Form0.q.onblur = function()
{
  var field = document.Form0.q;
  
  if (field.value == '') field.value = 'Busqueda en Internet';
}

document.Form0.q.onfocus = function()
{
  var field = document.Form0.q;
  
  if (field.value == 'Busqueda en Internet') field.value = '';
}

if (document.Form0.q.value == '') document.Form0.q.value = 'Busqueda en Internet';
}

function CreateBookmarkLink() {

 title = "Ahorra Vueltas";
  // Blogger - Replace with <$BlogItemTitle$>
  // MovableType - Replace with <$MTEntryTitle$>

 url = "http://www.ahorravueltas.com/";

        if (window.sidebar) { // Mozilla Firefox Bookmark
                window.sidebar.addPanel(title, url,"");
        } else if( window.external ) { // IE Favorite
                window.external.AddFavorite( url, title); }
        else if(window.opera && window.print) { // Opera Hotlist
                return true; }
}

