/***********************************************
 * Prospect Training Services (www.prospect-training.org.uk)
 *
 * Author: John Leighton
 *
 * Copyright (c)2008 NT-Designs
 * http://www.nt-designs.co.uk
 *
 * Version: 1.0
 * script.js
 **********************************************/

// **************************************************************
// Function:    sureDelete()
// Description: confirm user action
// Inputs:      none
// Outputs:     true or false
// **************************************************************
function sureDelete()
{
  return confirm("Are you sure you want to delete this item?")
}

// **************************************************************
// Function:    courseSelected()
// Description: check a valid course has been selected from the dropdown
// Inputs:      none
// Outputs:     true or false
// **************************************************************
function courseSelected()
{
  dropdownvalue = document.getElementById( 'courseid' ).value;

  if ( dropdownvalue == "0" )
  {
    alert( "Prospect Training Services\n\r\n\rPlease select either a Youth or Adult training course." );
  }
  else
  {
    window.location = dropdownvalue;
  }

  return false;
}

// **************************************************************
// Function:    AreYouSure()
// Description: confirm user action
// Inputs:      none
// Outputs:     true or false
// **************************************************************
function AreYouSure()
{
  return confirm("Are you sure you want to delete this item?")
}

// **************************************************************
// Function:    popupWindow( URL )
// Description: pop up a new browser window
// Inputs:      URL - the page to open in the new window
// Outputs:     none
// **************************************************************
function popupWindow( URL )
{
  day = new Date();
  id = day.getTime();

  eval( "pagemanageimages = window.open( URL, 'manageimages', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=505,height=500,left=100,top=100' );" );
}
