// (C) Copyright IBM Corp. 2001 - 2002  All Rights Reserved.
//
// diagnose.js
//
// last upload: Sep 17, 2001
// last update: Feb 12, 2002

function checkDiagnose()
{
// checks for "?diagnose" at end of location string to display diagnostic msgs 

if (window.location.search.length > 1)
	{
	if (window.location.search.substring(1) == "diagnose")
		{
		return true;
		}
	}

return false;
}

function checkTopDiagnose()
{
// checks for "?diagnose" at end of location string to display diagnostic msgs 

if (top.location.search.length > 1)
	{
	if (top.location.search.substring(1) == "diagnose")
		{
		return true;
		}
	}

return false;
}
