// **************************************************************
// Function:    Confirm( confirmtext, link )
// Description: confirm user action
// Inputs:      confirmtext - the text to display
//              link - the confirm link
// Outputs:     redirection or false
// **************************************************************
function Confirm( confirmtext, link )
{
  answer = confirm( confirmtext );

  if ( answer == true )
    window.location = link;
  else
    return false;
}

// **************************************************************
// Function:    Confirm( confirmtext, link )
// Description: confirm user action
// Inputs:      confirmtext - the text to display
//              link - the confirm link
// Outputs:     redirection or false
// **************************************************************
function AreYouSure()
{
  return confirm("Are you sure you want to delete this item?")
}


