
//---------------------------------------------------------------------------------------------------------------------------------------------------------------
// Update a tab.
//---------------------------------------------------------------------------------------------------------------------------------------------------------------

function UpdateTab (tabImage, tabImageUrl, bannerImageUrl)
{
	var cell;

	tabImage.src = tabImageUrl;

	if (document.getElementById)
	{
		cell = document.getElementById ("_bannerImageCell");
		if (cell)
		{
//			cell.background = bannerImageUrl;
		}
	}
	
}

//---------------------------------------------------------------------------------------------------------------------------------------------------------------
// Open a new browser window.
//---------------------------------------------------------------------------------------------------------------------------------------------------------------
function newWindow ( url, name, params )
{
	var win;
	
	win = window.open( url, name, params );
	win.focus();

	return void(0);

}
