/*
function $(element) 
{
  return document.getElementById(element);
}

function show(id)
{
  $(id).style.display = '';
}

function hide(id)
{
  $(id).style.display = 'none';
}
*/

function explain_bookmarklet()
{
  alert('Drag this to your Bookmarks Bar to install.');
  return false;
}
function eestbt()
{
  alert('The bookmarklet is correctly installed.');
}
