/* *
 * showPopup
 * 
 */
function showPopup(url, width, height) {
	if (parseFloat(navigator.appVersion) >= 4.0) {
		pos_x = parseInt(screen.width / 2.0) - (width / 2.0);
		pos_y = parseInt(screen.height / 2.0) - (height / 2.0);
	}

	var win = window.open(url, "popup" + width + "x" + height, "width=" + width + ",height=" + height + ",left=" + pos_x + ",top=" + pos_y + ",resizable=no,scrollbars=no");
	try {
		win.focus();
		win.moveTo(pos_x, pos_y);
	} catch (e) {
		// How unfortunate.
	}
}

// Popup form
function popImpressum() {
	showPopup("htmlmedia/impressum.html", 500, 650);
}
function popCredits() {
	showPopup("htmlmedia/credits.html", 500, 400);
}
function popKontakt() {
	showPopup("htmlmedia/kontakt.html", 300, 500);
}



