function tlaOpen( sPage )
	{
	tlaWindow = window.open( sPage, 'newwin',
		'toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes, resizable=yes,scrollbars=yes' );
	}

function tlaClose( )
	{
	if ( tlaWindow && !tlaWindow.closed )
		tlaWindow.close( );
	}

tlaWindow = null ;

// ----------------------------------------------------------------------------------------
// 2005.09.20 16:20   Copyright 1996-2002 Thom Little Associates, Ltd. All Rights Reserved.
