/* positioning of layer id_1_5 because of problem in internet-explorer with absolute position */
/* this function sets a new position to the layer at events "onload" and "onresize" */
/* needs call of browser.js before for browser check! */

function resize_layer()
{
	var this_width = document.body.clientWidth;

	if (this_width > 996)
	{
		this_layer_left = Math.floor((this_width - 996) / 2);
	}
	else
	{
		this_layer_left = 0;
	}

	document.getElementById("id_1_5").style.left = this_layer_left;
}