/*
open popUp window from flash
*/

function openPopUp(popUrl) {
	// set parameters
	popWidth = 720;
	popHeight = 502;
	if (popUrl == 'impressum_d') { popUrl = 'html/impressum_d.html' };
	if (popUrl == 'impressum_f') { popUrl = 'html/impressum_f.html' };
	if (popUrl == 'kontakt_d') { popUrl = 'aspnet/contact_de.aspx' };
	if (popUrl == 'kontakt_f') { popUrl = 'aspnet/contact_fr.aspx' };
	if (popUrl == 'teilnahme_d') { popUrl = 'html/tbd_reim_d.html' };
	if (popUrl == 'teilnahme_f') { popUrl = 'html/tbd_reim_f.html' };
	// calculate coordinates for centering
	posX = (screen.width / 2) - (popWidth / 2);
	posY = (screen.height / 2) - (popHeight / 2);
	// open window
	popWindow = open(
		popUrl,'popUpWindow', // url & name
		'width=' + popWidth + ',height=' + popHeight + ',' + // dimensions
		'top=' + posY + ',left=' + posX + ',' + // position
		'scrollbars' // window attributes
	);
	// set focus
	popWindow.focus();
}
