/*
*
* styles/prosilver/template/th23_loading_indicator.js
*
* @package th23_site
* @author Thorsten Hartmann (www.th23.net)
* @copyright (c) 2008 by Thorsten Hartmann (www.th23.net)
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
*/

window.onbeforeunload = th23_loading_indicator;

onunload_functions.push('th23_loading_indicator()');

function th23_loading_indicator()
{
	var l = document.getElementById('th23-loading-indicator');
	if (l)
	{
		l.style.display = 'block';
	}				
}

