function up ()
{
	window.focus ();
}

function init ()
{
	//setTimeout (up, 10000);
}

/*
var resizedId = 0;
function resized ()
{	
	if (clib_is_msie_6 ())
	{
		if (resizedId)
		{
			clearTimeout (resizedId);
			resizedId = 0;
		}
		
		var tmf = function ()
		{
			try {
				var dim = clib_get_navigator_size ();
				var width = document.documentElement.offsetWidth;
				
				alert ("offset: " + width + ", dim: " + dim.width);
				
				if (width < 740)
					window.resizeTo (780 + width - dim.width, dim.height);
				
				alert (780 + width - dim.width);
				resizedId = 0;
			}
			catch (err) {}		
		};

		try {
			var dim = clib_get_navigator_size ();
			alert ("ici: " + dim.width);
			if (dim.width < 740)
				resizedId = setTimeout (tmf, 200);
		}
		catch (err) {}
	}
}
resized ();
*/