function openInformationWindow(page, pageName, width, height, left, top, location, menubar, resizable, scrollbars, status, toolbar)
{
	window.open(page, pageName, 'width=' + width + ', height=' + height + ', left=' + left + ', top=' + top + ', location=' + location + ', menubar=' + menubar + ', resizable=' + resizable + ', scrollbars=' + scrollbars + ', status=' + status + ', toolbar=' + toolbar);
	return true;
}

