﻿function delMSG(msgID, msgURL)
{
  if(confirm('Are you sure you want to delete this message?'))
    window.setTimeout("document.location = '" + msgURL + "'", 100);
  
  return false;
}

function delMedia(mediaID, mediaURL)
{
  if(confirm('Are you sure you want to delete this file?'))
    window.setTimeout("document.location = '" + mediaURL + "'", 100);
  
  return false;
}

function delMediaComment(mediaID, mediaURL)
{
  if(confirm('Are you sure you want to delete this comment?'))
    window.setTimeout("document.location = '" + mediaURL + "'", 100);
  
  return false;
}

function delComment(commentID, commentURL)
{
  if(confirm('Are you sure you want to delete this comment?'))
    window.setTimeout("document.location = '" + commentURL + "'", 100);
  
  return false;
}