/* javascript supplied by Euro Business Enterprises Ltd - ebewebdesign.co.uk */

function checkit(url)
{
  var ok=confirm('Are you sure you want to delete this item?');
  if(ok)
  {
    window.location = url;
  }
}



function go(url)
{
    window.location = url;
}

function setFocus(id)
{
  var elem = document.getElementById( id );
    if ( elem ) 
    {
      elem.focus();    // May throw "Permission denied" (uncatchable)
    }
}

