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

  if(ok)
  {
    window.location.href = url;
  }
}

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


