function openWindow(url, name, width, height, location, menubar, resizable, scrollbars, status, toolbar) {
	var top = (screen.height / 2) - (height / 2);
	var left = (screen.width / 2) - (width / 2);
	
	window.open(url, name, "top=" + top + "px,left=" + left + "px,width=" + width + "px,height=" + height + "px,location=" + location
					+ ",menubar=" + menubar + ",resizable=" + resizable + ",scrollbars=" + scrollbars + ",status=" + status
					+ ",toolbar=" + toolbar);
}

function openFlashPopup(url) {
	openWindow(url,
				"flashPopup",
				670,
				380,
				"no",
				"no",
				"no",
				"no",
				"yes",
				"no");
	
	return false;
}