function showNoLogin()
{
	var batNoLogin = window.open ('/popup/nologin/','bat','menubar=no,scrollbars=no,status=no,toolbar=no,titlebar=no,rezizeable=no,width=497,height=380,top=0,left=0');
	batNoLogin.focus();
}

function processOnLoad()
{
	var content =  document.getElementById('content');
	var infoContent = document.getElementById('infoContent');
	if (infoContent && content)
	{
		var heightRight = infoContent.offsetHeight;
		var heightMain = content.offsetHeight;
		if (heightRight > heightMain)
		{
			if (content.style) content.style.height = heightRight + 50;
		}
		else if (heightMain < 391)
		{
			if (content.style) content.style.height = 391;
		}
	}
}
