function if_confirm(link)
{
  if (confirm('Are you sure?'))
  {
    document.location = link;
  }
}


