function openFooterPopUp(path, name, width, height)
{
	var left = (window.screen.width - width) / 2;
    var top  = (window.screen.height - height) / 2;

	window.open(path, name,'toolbar=0, menubar=0, location=0, scrollbars=0, resizable=no, width=' + width + ', height=' + height + ', top=' + top + ', left=' + left + '')
}