function openCustomPopup(pfad,frmName,frameOptions) {
		mywin=window.open(pfad, frmName, frameOptions);
		mywin.focus();
}


var isInternetExplorer = navigator.appName.indexOf("Microsoft") != -1;
// Verarbeiten aller FSCommand-Meldungen in einem Flash-Film
function a2flash_DoFSCommand(command, args) {
	var teaserObj = isInternetExplorer ? document.all.teaser : document.teaser;
	if (command == 'popup') {
openCustomPopup(args,'game','toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=no,copyhistory=no,titlebar=no,width=597,height=472,screenX=15,screenY=13');
	}

}
// Hook f&uuml;r Internet Explorer.
if (navigator.appName && navigator.appName.indexOf("Microsoft") != -1 && navigator.userAgent.indexOf("Windows") != -1 && navigator.userAgent.indexOf("Windows 3.1") == -1) {
	document.write('<script language=\"VBScript\"\>\n');
	document.write('On Error Resume Next\n');
	document.write('Sub a2flash_FSCommand(ByVal command, ByVal args)\n');
	document.write('	Call a2flash_DoFSCommand(command, args)\n');
	document.write('End Sub\n');
	document.write('</script\>\n');
}


