function getLeftPosToCenter(windowWidth) { 
	return (screen.width / 2) - (windowWidth / 2);
}

function getTopPosToCenter(windowHeight) { 
	return (screen.height / 2) - (windowHeight / 2);
}

