// Common script functions



function centerWindow(targetWindow, width, height)
{
	var
		x = (window.screen.width - width) / 2,
		y = (window.screen.height - height) / 2;
	targetWindow.moveTo(x, y);
}