var imageWindow;
function imageWindowOpen(url, width, height) {

	imageWindow = window.open("http://www.gotgame.se/imagePopup.php?url=" + url, "imagePopup", "width=" + width + ",height=" + height + ",status=yes,scrollbars=no,resizable=no");

	if (imageWindow) {
		imageWindow.moveTo(((window.screen.width - width)/2), ((window.screen.height - height)/2));
		imageWindow.focus();
	}

}
