// ---------------------------------------------------------------------------
//  Filename: parenttitle.js
//   Version: 3.0
//      Date: 12/3/2007
//    Author: B. Zink
//   Purpose: Update title in tab / Browser title
// ---------------------------------------------------------------------------
// Copyright© 2004-2010 Brz, Inc. All Rights Reserved
// ---------------------------------------------------------------------------
// Note: NO portion of this code may be copied, manipulated, viewed, or used
//       in ANY way without express written permission of the author and
//       BRZ, Inc.
// ---------------------------------------------------------------------------
// Revisions:
//
// 1. 12/3/2007 - bz
//    3.0.0 - Initial creation
// ---------------------------------------------------------------------------

function UpdateTitle( theTitle )
{
	if (typeof(parent.document) != 'undefined' && typeof(parent.document) != 'unknown'
	    && typeof(parent.document.title) == 'string') {
	    parent.document.title = theTitle;
	}
}