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.07.08 12:49  Copyright © 1996-2003 - Thom Little Associates, Ltd. - www.tlaNET.net
