﻿// JScript File
function ConfirmDelete()
{
    ResponseBox = confirm("Are you sure you want to delete this player along with all its related data from the database?");
    if (ResponseBox == true)
    { 
        window.location.href="deletepdsname.aspx?id=" + id + "&PDSCode=" + code; 
    }
}
function openTips() 
{
  var meta = window.open("FormattingTips.htm", "meta", 
    "menubar=no,toolbar=no,status=no,scrollbars=yes,width=400,height=560"); 
  meta.focus();
}
function GetRandomImages()
{ 
   return '<img alt="" src="../App_Images/rotating/'+randomNumber(3)+'.gif" width="406" height="48" border="0" />'; 
}
function randomNumber(limit)
{ 
   return Math.floor(Math.random()*limit); 
}
