function resizeMe (newWidth, newHeight)
{
	var footerObj = document.getElementById("footer");
	var footerHeight = null;
	var footerWidth = null;
	var verticalRatio = null;
	if (footerObj)
	{
		footerHeight = footerObj.offsetHeight;
		footerWidth = footerObj.offsetWidth;
	}
	
	switch (LIB_navigator.getName())
	{
		case "Microsoft Internet Explorer":
			verticalRatio = 79;
		break;
		
		case "Firefox":
			verticalRatio = 74;
		break;
		
		default:
			verticalRatio = 55;

	}

	newWidth = parseInt(newWidth) + 2;
	newHeight = parseInt(newHeight) + footerHeight + verticalRatio;
	if (newWidth < footerWidth)
	{
		newWidth = footerWidth;
	}
	window.resizeTo(newWidth,newHeight);
	
	var screenWidth = parseInt(screen.availWidth);
	var screenHeight = parseInt(screen.availHeight) - verticalRatio;
	
	var screenCentralWidth = parseInt((screenWidth/2))
	var screenCentralHeight = parseInt((screenHeight/2))

	var leftPopup = screenCentralWidth - parseInt((window.document.body.offsetWidth/2))
	var topPopup = screenCentralHeight - parseInt(((window.document.body.offsetHeight)/2))
	
//	window.moveTo(leftPopup,topPopup)
}