// JavaScript Document
if(bw.bw)
{
	initFoldout();
}
function set_menu_pos()
{	//alert(window.innerWidth);
	if(typeof(window.innerWidth) != "undefined")
		var width = window.innerWidth;
	else
		var width = document.body.offsetWidth;
/*	if(width == "undefined")
		var width = document.body.offsetWidth;
	//alert("Width: " + width);*/
	
	if(width >= 760)
	{
		var position = ((width - 760) / 2) - 10;
	}
	else
	{
		var position = -10;
	}
	if(bw.moz)
	{
		position = position + 2;
	}
	document.getElementById('divCont').style.left = position;
}
menu_cont.height = mainTableHeight;
set_menu_pos();

if(menu_param1 > 0 && menu_param2 > 0)
{
	menu(menu_param1,menu_param2)
}