	//
	//
	//
	var theFlashPort = null;
	var theFlashPort_Width  = 960;
	var theFlashPort_Height = 640;

	//
	//
	//
	function OpenFlashPort()
	{
		//
		theFlashPort = window.open( 'flashport.php','FlashPort','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,left=0,top=0,width=' + theFlashPort_Width + ',height=' + theFlashPort_Height );
		if( ! theFlashPort )
		{
			alert( 'Bitte für diese Seite Popups zulassen.' );
		}
		else
		{
			if( theFlashPort.focus()  ) theFlashPort.focus();
			theFlashPort.moveTo( (screen.width-theFlashPort_Width)/2 , (screen.height-theFlashPort_Height)/2 );
		}

		//
		return( false );
	}

