/**************************************************************************************************
***************************************************************************************************

p_troubleshooting.js

Written by Chris Harding and Joshua McKinney
© Copyright F1 Solutions Pty Ltd 2003

This file holds the code for the troubleshooting page.

Production Version 2.0 - June 2007

***************************************************************************************************
**************************************************************************************************/


/* Function: saveAll()                                     */
/* This function is needed by all pages as only they know  */
/* what to save.                                           */
/* In this case it does nothing because there is no data   */
/* to save.                                                */
/* INPUTS : none                                           */
/* OUTPUTS: none                                           */
function saveAll() {
	return true;
}



/* Function: isData()                                      */
/* This function is needed by all pages to determine if    */
/* there is any existing data in the DGRR.  The trouble    */
/* shooting page does not check this because it might not  */
/* be able to load the file (we dont want more errors).    */
/* INPUTS : none                                           */
/* OUTPUTS: false                                          */
function isData() {
	return false;
}


