function resizeMenu()
{
	var obj = document.getElementById('menu');
	if (obj == null) return;
	var obj3 = document.getElementById('mCont');
	if (obj3 == null) return false;
	var obj2 = document.getElementById('menuSpacer');
	if (obj2 == null) return;
	var h1 = obj.offsetHeight;
	var h2 = obj3.offsetHeight;
	if (h1 > h2 && h1 > 0) 
	{
		obj2.style.height = h1+"px";
	}
}

function openUrl(url, width, height, name) 
{
	window.open(url ,name,'toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=no,width=' + width + ',height=' + height + ',left=0, top=0');
}

